Author: leo
Date: Tue Feb 7 14:58:52 2006
New Revision: 11469
Modified:
trunk/src/jit/ppc/jit_emit.h
Log:
implement lwzu ppc instruction
Modified: trunk/src/jit/ppc/jit_emit.h
==============================================================================
--- trunk/src/jit/ppc/jit_emit.h (original)
+++ trunk/src/jit/ppc/jit_emit.h Tue Feb 7 14:58:52 2006
@@ -371,6 +371,9 @@ enum { JIT_PPC_CALL, JIT_PPC_BRANCH, JIT
# define jit_emit_lwz(pc, D, disp, A) \
jit_emit_2reg(pc, 32, D, A, disp)
+# define jit_emit_lwzu(pc, D, disp, A) \
+ jit_emit_2reg(pc, 33, D, A, disp)
+
# define jit_emit_lwzx(pc, D, A, B) \
jit_emit_3reg_x(pc, 31, D, A, B, 23, 0)