diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-04-15 16:30:10 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-04-15 16:30:10 +0000 |
commit | afe10913bddfe0e7beea9a9886ecd1d4aaabd2e6 (patch) | |
tree | cc7ff1be79703f0b0f12347e91bf036236cae9a9 /lib/Analysis/GRSimpleVals.cpp | |
parent | b9b309481369196b64bbf73e540d0c9b487e56a5 (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.cpp | 2 |
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); |