]> granicus.if.org Git - clang/commitdiff
Reverting bitfield size to attempt to fix a windows buildbot
authorKristof Umann <dkszelethus@gmail.com>
Mon, 17 Dec 2018 10:31:35 +0000 (10:31 +0000)
committerKristof Umann <dkszelethus@gmail.com>
Mon, 17 Dec 2018 10:31:35 +0000 (10:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@349336 91177308-0d34-0410-b5e6-96231b3b80d8

lib/StaticAnalyzer/Checkers/MallocChecker.cpp

index fb770eb9ee4dec3ac58ed5672ac33167a4ea9a4b..b56c55d666c32a011cc7d4af62952b490d6e45f3 100644 (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) {