mirror of https://gitee.com/openkylin/qemu.git
tcg: Use TCGMemOp for TCGLabelQemuLdst.opc
Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
1cdae4573d
commit
d257e0d7ae
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
typedef struct TCGLabelQemuLdst {
|
typedef struct TCGLabelQemuLdst {
|
||||||
int is_ld:1; /* qemu_ld: 1, qemu_st: 0 */
|
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 addrlo_reg; /* reg index for low word of guest virtual addr */
|
||||||
TCGReg addrhi_reg; /* reg index for high 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 */
|
TCGReg datalo_reg; /* reg index for low word to be loaded or stored */
|
||||||
|
|
Loading…
Reference in New Issue