mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 10:13:56 -06:00
tcg: Drop union from TCGArgConstraint
The union is unused; let "regs" appear in the main structure without the "u.regs" wrapping. Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
e2e7168a21
commit
9be0d08019
11 changed files with 91 additions and 93 deletions
|
@ -985,9 +985,7 @@ void tcg_dump_op_count(void);
|
|||
typedef struct TCGArgConstraint {
|
||||
uint16_t ct;
|
||||
uint8_t alias_index;
|
||||
union {
|
||||
TCGRegSet regs;
|
||||
} u;
|
||||
TCGRegSet regs;
|
||||
} TCGArgConstraint;
|
||||
|
||||
#define TCG_MAX_OP_ARGS 16
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue