mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
tcg/ppc: Remove unused constraint J
Never used since its introduction.
Fixes: 3d582c6179
("tcg-ppc64: Rearrange integer constant constraints")
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
6e21aa2dcd
commit
3dedb7201c
2 changed files with 0 additions and 4 deletions
|
@ -83,7 +83,6 @@
|
|||
#define SZR (TCG_TARGET_REG_BITS / 8)
|
||||
|
||||
#define TCG_CT_CONST_S16 0x100
|
||||
#define TCG_CT_CONST_U16 0x200
|
||||
#define TCG_CT_CONST_S32 0x400
|
||||
#define TCG_CT_CONST_U32 0x800
|
||||
#define TCG_CT_CONST_ZERO 0x1000
|
||||
|
@ -270,8 +269,6 @@ static bool tcg_target_const_match(int64_t val, TCGType type, int ct)
|
|||
|
||||
if ((ct & TCG_CT_CONST_S16) && val == (int16_t)val) {
|
||||
return 1;
|
||||
} else if ((ct & TCG_CT_CONST_U16) && val == (uint16_t)val) {
|
||||
return 1;
|
||||
} else if ((ct & TCG_CT_CONST_S32) && val == (int32_t)val) {
|
||||
return 1;
|
||||
} else if ((ct & TCG_CT_CONST_U32) && val == (uint32_t)val) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue