aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGObjC.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-04-10 19:33:39 +0000
committerChris Lattner <sabre@nondot.org>2010-04-10 19:33:39 +0000
commitc603d09980ced1ca0f49faa9ad628795ef739497 (patch)
tree4483b8eaa5c6a0ee0bfd9888119cb8cdeda92db4 /lib/CodeGen/CGObjC.cpp
parent9446481d4af332ac0be9417392b7919712f5dae4 (diff)
revert 100942, pending discussion.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@100946 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGObjC.cpp')
-rw-r--r--lib/CodeGen/CGObjC.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGObjC.cpp b/lib/CodeGen/CGObjC.cpp
index abfee9bf79..206d438ced 100644
--- a/lib/CodeGen/CGObjC.cpp
+++ b/lib/CodeGen/CGObjC.cpp
@@ -73,7 +73,7 @@ RValue CodeGenFunction::EmitObjCMessageExpr(const ObjCMessageExpr *E) {
}
isClassMessage = true;
- } else if (isa<ObjCSuperExpr>(E->getReceiver()->IgnoreParens())) {
+ } else if (isa<ObjCSuperExpr>(E->getReceiver())) {
isSuperMessage = true;
Receiver = LoadObjCSelf();
} else {