Skip to content

Commit

Permalink
[ValueLattice] Use 8 bits for Tag.
Browse files Browse the repository at this point in the history
Suggested as follow-up in D78145 post-commit to be more machine friendly.
  • Loading branch information
fhahn committed Apr 18, 2020
1 parent a348de4 commit b7cdb13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/include/llvm/Analysis/ValueLattice.h
Expand Up @@ -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;

Expand Down

0 comments on commit b7cdb13

Please sign in to comment.