Attempt to unbreak Windows build.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62295 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/CGObjC.cpp b/lib/CodeGen/CGObjC.cpp
index 29740fd..1dcf1be 100644
--- a/lib/CodeGen/CGObjC.cpp
+++ b/lib/CodeGen/CGObjC.cpp
@@ -302,11 +302,11 @@
false, CallArgList());
}
else {
- const ObjCKVCRefExpr *E = cast<ObjCKVCRefExpr>(Exp);
- Selector S = E->getGetterMethod()->getSelector();
+ const ObjCKVCRefExpr *KE = cast<ObjCKVCRefExpr>(Exp);
+ Selector S = KE->getGetterMethod()->getSelector();
return CGM.getObjCRuntime().
GenerateMessageSend(*this, Exp->getType(), S,
- EmitScalarExpr(E->getBase()),
+ EmitScalarExpr(KE->getBase()),
false, CallArgList());
}
}