diff options
author | Richard Henderson | 2020-09-04 00:56:24 +0200 |
---|---|---|
committer | Richard Henderson | 2020-10-08 12:57:32 +0200 |
commit | 74a117906b87ff9220e4baae5a7431d6f4eadd45 (patch) | |
tree | d99fbe2a152523b0dd5b73fbd22e46aa2bdfd7cf /tcg/arm | |
parent | tcg: Move sorted_args into TCGArgConstraint.sort_index (diff) | |
download | qemu-74a117906b87ff9220e4baae5a7431d6f4eadd45.tar.gz qemu-74a117906b87ff9220e4baae5a7431d6f4eadd45.tar.xz qemu-74a117906b87ff9220e4baae5a7431d6f4eadd45.zip |
tcg: Remove TCG_CT_REG
This wasn't actually used for anything, really. All variable
operands must accept registers, and which are indicated by the
set in TCGArgConstraint.regs.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/arm')
-rw-r--r-- | tcg/arm/tcg-target.c.inc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tcg/arm/tcg-target.c.inc b/tcg/arm/tcg-target.c.inc index 978eb1dd70..62c37a954b 100644 --- a/tcg/arm/tcg-target.c.inc +++ b/tcg/arm/tcg-target.c.inc @@ -253,13 +253,11 @@ static const char *target_parse_constraint(TCGArgConstraint *ct, break; case 'r': - ct->ct |= TCG_CT_REG; ct->regs = 0xffff; break; /* qemu_ld address */ case 'l': - ct->ct |= TCG_CT_REG; ct->regs = 0xffff; #ifdef CONFIG_SOFTMMU /* r0-r2,lr will be overwritten when reading the tlb entry, @@ -274,7 +272,6 @@ static const char *target_parse_constraint(TCGArgConstraint *ct, /* qemu_st address & data */ case 's': - ct->ct |= TCG_CT_REG; ct->regs = 0xffff; /* r0-r2 will be overwritten when reading the tlb entry (softmmu only) and r0-r1 doing the byte swapping, so don't use these. */ |