forked from OSchip/llvm-project
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:
parent
1b62e0e91f
commit
affa1c30c2
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue