From: Richard Henderson Date: Fri, 11 Oct 2013 21:32:06 +0000 (-0700) Subject: tcg: Use TCGMemOp for TCGLabelQemuLdst.opc X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~524^2~3^2~102^2~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d257e0d7aeb72f4280666590f81ca5f0a38697f8;p=sdk%2Femulator%2Fqemu.git tcg: Use TCGMemOp for TCGLabelQemuLdst.opc Signed-off-by: Richard Henderson --- diff --git a/tcg/tcg-be-ldst.h b/tcg/tcg-be-ldst.h index 2826d296d7..284db0c70d 100644 --- a/tcg/tcg-be-ldst.h +++ b/tcg/tcg-be-ldst.h @@ -25,7 +25,7 @@ typedef struct TCGLabelQemuLdst { int is_ld:1; /* qemu_ld: 1, qemu_st: 0 */ - int opc:4; + TCGMemOp opc:4; TCGReg addrlo_reg; /* reg index for low word of guest virtual addr */ TCGReg addrhi_reg; /* reg index for high word of guest virtual addr */ TCGReg datalo_reg; /* reg index for low word to be loaded or stored */