Rearrange the fields in Ins so the bit-fields get packed together

This commit is contained in:
Michael Forney 2019-02-14 13:23:28 -08:00 committed by Quentin Carbonneaux
parent b777cd6c4b
commit f622efa05a
6 changed files with 12 additions and 15 deletions

2
all.h
View file

@ -199,9 +199,9 @@ struct Op {
struct Ins {
uint op:30;
uint cls:2;
Ref to;
Ref arg[2];
uint cls:2;
};
struct Phi {