diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2019-04-04 09:37:38 +0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2020-10-08 05:57:32 -0500 |
commit | 66792f90f14fef18b25a168922877a367ecdca05 (patch) | |
tree | 7d0523f16258e00a1b676dc5e557ea73b2007cc5 /include/tcg | |
parent | 9be0d08019465b38e2f1a605960961a491430c21 (diff) | |
download | qemu-66792f90f14fef18b25a168922877a367ecdca05.zip qemu-66792f90f14fef18b25a168922877a367ecdca05.tar.gz qemu-66792f90f14fef18b25a168922877a367ecdca05.tar.bz2 |
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/tcg')
-rw-r--r-- | include/tcg/tcg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tcg/tcg.h b/include/tcg/tcg.h index a5a0ea4..63955ac 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 |