Ensuring the bit-fields have the same type; MSVC will place the fields in different allocation units otherwise.

llvm-svn: 274654
This commit is contained in:
Aaron Ballman 2016-07-06 18:33:01 +00:00
parent 1b62e0e91f
commit affa1c30c2
1 changed files with 1 additions and 1 deletions

View File

@ -8892,7 +8892,7 @@ class SequenceChecker : public EvaluatedExprVisitor<SequenceChecker> {
struct Value {
explicit Value(unsigned Parent) : Parent(Parent), Merged(false) {}
unsigned Parent : 31;
bool Merged : 1;
unsigned Merged : 1;
};
SmallVector<Value, 8> Values;