diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-03-17 22:18:22 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-03-17 22:18:22 +0000 |
commit | 58cda6ff1cd0b613fb54d74bb126f30e757f0f0f (patch) | |
tree | 3181bd472bc9c5386f503a3e675a9c7713689a3b /lib/Analysis/GRExprEngine.cpp | |
parent | 14a1140c9f4e20b12a54db8745b74699b9872cd2 (diff) |
Fix assertion.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48470 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRExprEngine.cpp')
-rw-r--r-- | lib/Analysis/GRExprEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/GRExprEngine.cpp b/lib/Analysis/GRExprEngine.cpp index 08c7113cab..13d6b47394 100644 --- a/lib/Analysis/GRExprEngine.cpp +++ b/lib/Analysis/GRExprEngine.cpp @@ -329,7 +329,7 @@ void GRExprEngine::ProcessSwitch(SwitchNodeBuilder& builder) { break; ++V1; - assert (V1 < V2); + assert (V1 <= V2); } while (true); } |