Reverting bitfield size to attempt to fix a windows buildbot

llvm-svn: 349336
This commit is contained in:
Kristof Umann 2018-12-17 10:31:35 +00:00
parent d94b0f62cf
commit a033466602
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ class RefState {
const Stmt *S;
Kind K : 3;
AllocationFamily Family : 3;
AllocationFamily Family : 29;
RefState(Kind k, const Stmt *s, AllocationFamily family)
: S(s), K(k), Family(family) {