diff options
author | Richard Henderson <rth@twiddle.net> | 2013-09-18 14:54:45 -0700 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2016-02-09 10:45:34 +1100 |
commit | b66386623176e0b0f3bd270640bdb8ac8431c732 (patch) | |
tree | 2abc489a3c2768e1361ec42939680cd8d8391c02 /tcg/tcg.h | |
parent | c8074023204e8e8a213399961ab56e2814aa6116 (diff) | |
download | qemu-b66386623176e0b0f3bd270640bdb8ac8431c732.zip qemu-b66386623176e0b0f3bd270640bdb8ac8431c732.tar.gz qemu-b66386623176e0b0f3bd270640bdb8ac8431c732.tar.bz2 |
tcg: More use of TCGReg where appropriate
Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'tcg/tcg.h')
-rw-r--r-- | tcg/tcg.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -448,7 +448,7 @@ typedef enum TCGTempVal { } TCGTempVal; typedef struct TCGTemp { - unsigned int reg:8; + TCGReg reg:8; TCGTempVal val_type:8; TCGType base_type:8; TCGType type:8; @@ -628,12 +628,12 @@ void tcg_func_start(TCGContext *s); int tcg_gen_code(TCGContext *s, tcg_insn_unit *gen_code_buf); -void tcg_set_frame(TCGContext *s, int reg, intptr_t start, intptr_t size); +void tcg_set_frame(TCGContext *s, TCGReg reg, intptr_t start, intptr_t size); int tcg_global_mem_new_internal(TCGType, TCGv_ptr, intptr_t, const char *); -TCGv_i32 tcg_global_reg_new_i32(int reg, const char *name); -TCGv_i64 tcg_global_reg_new_i64(int reg, const char *name); +TCGv_i32 tcg_global_reg_new_i32(TCGReg reg, const char *name); +TCGv_i64 tcg_global_reg_new_i64(TCGReg reg, const char *name); TCGv_i32 tcg_temp_new_internal_i32(int temp_local); TCGv_i64 tcg_temp_new_internal_i64(int temp_local); |