aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/GRSimpleVals.cpp
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2008-04-15 16:30:10 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2008-04-15 16:30:10 +0000
commitafe10913bddfe0e7beea9a9886ecd1d4aaabd2e6 (patch)
treecc7ff1be79703f0b0f12347e91bf036236cae9a9 /lib/Analysis/GRSimpleVals.cpp
parentb9b309481369196b64bbf73e540d0c9b487e56a5 (diff)
Fix a compiler error on MSVC (variable name 'E' clash).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49727 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRSimpleVals.cpp')
-rw-r--r--lib/Analysis/GRSimpleVals.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/GRSimpleVals.cpp b/lib/Analysis/GRSimpleVals.cpp
index b37ccf5f80..dabae43523 100644
--- a/lib/Analysis/GRSimpleVals.cpp
+++ b/lib/Analysis/GRSimpleVals.cpp
@@ -228,7 +228,7 @@ public:
GRExprEngine& Eng = BR.getEngine();
for (GRExprEngine::UndefReceiversTy::iterator I=Eng.undef_receivers_begin(),
- E = Eng.undef_receivers_end(); I!=E; ++I) {
+ End = Eng.undef_receivers_end(); I!=End; ++I) {
// Generate a report for this bug.
RangedBugReport report(*this, *I);