diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2017-09-11 12:44:30 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2017-09-17 06:52:19 -0700 |
commit | f46934df662182097dce07d57ec00f37e4d2abf1 (patch) | |
tree | 17cb6113bf3f6e248669ba4aa813fa8eb222b883 /tcg/tcg.h | |
parent | 07ddf036fa66bca279590c09fe1c46bcdcc5bcff (diff) |
tcg: Remove tcg_regset_set32
It's not even clear what the interface REG and VAL32 were supposed to mean.
All uses had REG = 0 and VAL32 was the bitset assigned to the destination.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/tcg.h')
-rw-r--r-- | tcg/tcg.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -186,7 +186,6 @@ typedef enum TCGOpcode { NB_OPS, } TCGOpcode; -#define tcg_regset_set32(d, reg, val32) (d) |= (val32) << (reg) #define tcg_regset_set_reg(d, r) (d) |= 1L << (r) #define tcg_regset_reset_reg(d, r) (d) &= ~(1L << (r)) #define tcg_regset_test_reg(d, r) (((d) >> (r)) & 1) |