commit | 58cda6ff1cd0b613fb54d74bb126f30e757f0f0f | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Mon Mar 17 22:18:22 2008 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Mon Mar 17 22:18:22 2008 +0000 |
tree | 3181bd472bc9c5386f503a3e675a9c7713689a3b | |
parent | 14a1140c9f4e20b12a54db8745b74699b9872cd2 [diff] [blame] |
Fix assertion. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48470 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/GRExprEngine.cpp b/lib/Analysis/GRExprEngine.cpp index 08c7113..13d6b47 100644 --- a/lib/Analysis/GRExprEngine.cpp +++ b/lib/Analysis/GRExprEngine.cpp
@@ -329,7 +329,7 @@ break; ++V1; - assert (V1 < V2); + assert (V1 <= V2); } while (true); }