aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/GRExprEngine.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-11-10 03:00:37 +0000
committerChris Lattner <sabre@nondot.org>2008-11-10 03:00:37 +0000
commit8341be7ac9e735872fe831d9a1ae5a6154dcc015 (patch)
tree62d9a2e8d3ffc7a0826d4fcb2c20016029da7b5b /lib/Analysis/GRExprEngine.cpp
parent5239304ff761b8b03eefb772bd5d830a9b9f1aea (diff)
silence a warning from gcc.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58956 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRExprEngine.cpp')
-rw-r--r--lib/Analysis/GRExprEngine.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Analysis/GRExprEngine.cpp b/lib/Analysis/GRExprEngine.cpp
index 8f8a143863..11ce8ea7ff 100644
--- a/lib/Analysis/GRExprEngine.cpp
+++ b/lib/Analysis/GRExprEngine.cpp
@@ -1085,6 +1085,7 @@ const GRState* GRExprEngine::EvalLocation(Expr* Ex, NodeTy* Pred,
bool isFeasibleOutBound = false;
const GRState* StOutBound = AssumeInBound(StNotNull, Idx, NumElements,
false, isFeasibleOutBound);
+ StInBound = StOutBound = 0; // FIXME: squeltch warning.
// Report warnings ...
}