fix 32-bit indexed loads

This commit is contained in:
Joel Dice 2009-02-28 17:31:09 -07:00
parent 750f4d51da
commit 5adcfa3341

View File

@ -843,7 +843,7 @@ load(Context* c, unsigned srcSize, int base, int offset, int index,
load(c, 4, base, 0, normalized, 1, 4, &dstHigh, preserveIndex, false);
load(c, 4, base, 4, normalized, 1, 4, dst, preserveIndex, false);
} else {
issue(c, lwzx(dst->low, base, offset));
issue(c, lwzx(dst->low, base, normalized));
}
} break;