summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRichard Henderson2019-04-04 04:37:38 +0200
committerRichard Henderson2020-10-08 12:57:32 +0200
commit66792f90f14fef18b25a168922877a367ecdca05 (patch)
tree7d0523f16258e00a1b676dc5e557ea73b2007cc5 /include
parenttcg: Drop union from TCGArgConstraint (diff)
downloadqemu-66792f90f14fef18b25a168922877a367ecdca05.tar.gz
qemu-66792f90f14fef18b25a168922877a367ecdca05.tar.xz
qemu-66792f90f14fef18b25a168922877a367ecdca05.zip
tcg: Move sorted_args into TCGArgConstraint.sort_index
This uses an existing hole in the TCGArgConstraint structure and will be convenient for keeping the data in one place. Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include')
-rw-r--r--include/tcg/tcg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tcg/tcg.h b/include/tcg/tcg.h
index a5a0ea4ada..63955ac85b 100644
--- a/include/tcg/tcg.h
+++ b/include/tcg/tcg.h
@@ -985,6 +985,7 @@ void tcg_dump_op_count(void);
typedef struct TCGArgConstraint {
uint16_t ct;
uint8_t alias_index;
+ uint8_t sort_index;
TCGRegSet regs;
} TCGArgConstraint;
@@ -1015,7 +1016,6 @@ typedef struct TCGOpDef {
uint8_t nb_oargs, nb_iargs, nb_cargs, nb_args;
uint8_t flags;
TCGArgConstraint *args_ct;
- int *sorted_args;
#if defined(CONFIG_DEBUG_TCG)
int used;
#endif