[ValueLattice] Use 8 bits for Tag.

Suggested as follow-up in D78145 post-commit to be more machine friendly.
This commit is contained in:
Florian Hahn 2020-04-18 13:31:17 +01:00
parent a348de480d
commit b7cdb138af
1 changed files with 1 additions and 1 deletions

View File

@ -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;