[cfe-commits] r58956 - /cfe/trunk/lib/Analysis/GRExprEngine.cpp
Chris Lattner
sabre at nondot.org
Sun Nov 9 19:00:37 PST 2008
Author: lattner
Date: Sun Nov 9 21:00:37 2008
New Revision: 58956
URL: http://llvm.org/viewvc/llvm-project?rev=58956&view=rev
Log:
silence a warning from gcc.
Modified:
cfe/trunk/lib/Analysis/GRExprEngine.cpp
Modified: cfe/trunk/lib/Analysis/GRExprEngine.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/GRExprEngine.cpp?rev=58956&r1=58955&r2=58956&view=diff
==============================================================================
--- cfe/trunk/lib/Analysis/GRExprEngine.cpp (original)
+++ cfe/trunk/lib/Analysis/GRExprEngine.cpp Sun Nov 9 21:00:37 2008
@@ -1085,6 +1085,7 @@
bool isFeasibleOutBound = false;
const GRState* StOutBound = AssumeInBound(StNotNull, Idx, NumElements,
false, isFeasibleOutBound);
+ StInBound = StOutBound = 0; // FIXME: squeltch warning.
// Report warnings ...
}
More information about the cfe-commits
mailing list