From: Kristof Umann <dkszelethus@gmail.com>
Date: Mon, 17 Dec 2018 10:31:35 +0000 (+0000)
Subject: Reverting bitfield size to attempt to fix a windows buildbot
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5f610d030dfd76b4df01f08fec8893357145d352;p=clang

Reverting bitfield size to attempt to fix a windows buildbot


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@349336 91177308-0d34-0410-b5e6-96231b3b80d8
---

diff --git a/lib/StaticAnalyzer/Checkers/MallocChecker.cpp b/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
index fb770eb9ee..b56c55d666 100644
--- a/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
+++ b/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
@@ -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) {