r349336 - Reverting bitfield size to attempt to fix a windows buildbot
Kristof Umann via cfe-commits
cfe-commits at lists.llvm.org
Mon Dec 17 02:31:35 PST 2018
Author: szelethus
Date: Mon Dec 17 02:31:35 2018
New Revision: 349336
URL: http://llvm.org/viewvc/llvm-project?rev=349336&view=rev
Log:
Reverting bitfield size to attempt to fix a windows buildbot
Modified:
cfe/trunk/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
Modified: cfe/trunk/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/StaticAnalyzer/Checkers/MallocChecker.cpp?rev=349336&r1=349335&r2=349336&view=diff
==============================================================================
--- cfe/trunk/lib/StaticAnalyzer/Checkers/MallocChecker.cpp (original)
+++ cfe/trunk/lib/StaticAnalyzer/Checkers/MallocChecker.cpp Mon Dec 17 02:31:35 2018
@@ -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) {
More information about the cfe-commits
mailing list