forked from OSchip/llvm-project
[ValueLattice] Use 8 bits for Tag.
Suggested as follow-up in D78145 post-commit to be more machine friendly.
This commit is contained in:
parent
a348de480d
commit
b7cdb138af
|
@ -75,7 +75,7 @@ class ValueLatticeElement {
|
|||
overdefined,
|
||||
};
|
||||
|
||||
ValueLatticeElementTy Tag : 6;
|
||||
ValueLatticeElementTy Tag : 8;
|
||||
/// Number of times a constant range has been extended with widening enabled.
|
||||
unsigned NumRangeExtensions : 8;
|
||||
|
||||
|
|
Loading…
Reference in New Issue