Fix a compiler error on MSVC (variable name 'E' clash).

llvm-svn: 49727
diff --git a/clang/lib/Analysis/GRSimpleVals.cpp b/clang/lib/Analysis/GRSimpleVals.cpp
index b37ccf5..dabae43 100644
--- a/clang/lib/Analysis/GRSimpleVals.cpp
+++ b/clang/lib/Analysis/GRSimpleVals.cpp
@@ -228,7 +228,7 @@
     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);