aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGObjC.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/CodeGen/CGObjC.cpp')
-rw-r--r--lib/CodeGen/CGObjC.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/CGObjC.cpp b/lib/CodeGen/CGObjC.cpp
index 29740fdf8f..1dcf1be9a0 100644
--- a/lib/CodeGen/CGObjC.cpp
+++ b/lib/CodeGen/CGObjC.cpp
@@ -302,11 +302,11 @@ RValue CodeGenFunction::EmitObjCPropertyGet(const Expr *Exp) {
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());
}
}