mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 17:20:10 +01:00
aco: shrink ssa_info
Reorder members so that it's 16 bytes instead of 24. Signed-off-by: Rhys Perry <pendingchaos02@gmail.com> Reviewed-by: Daniel Schürmann <daniel@schuermann.dev> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5281>
This commit is contained in:
parent
19983d3d4a
commit
47ca84a96d
1 changed files with 1 additions and 1 deletions
|
|
@ -102,11 +102,11 @@ static constexpr uint32_t val_labels = label_constant_32bit | label_constant_64b
|
|||
|
||||
struct ssa_info {
|
||||
uint32_t val;
|
||||
uint32_t label;
|
||||
union {
|
||||
Temp temp;
|
||||
Instruction* instr;
|
||||
};
|
||||
uint32_t label;
|
||||
|
||||
ssa_info() : label(0) {}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue