llvm-svn: 59610
This commit is contained in:
Chris Lattner 2008-11-19 08:24:49 +00:00
parent 4bd8dd8568
commit d9c7bcf4bc

View File

@ -63,7 +63,7 @@ RValue CodeGenFunction::EmitObjCMessageExpr(const ObjCMessageExpr *E) {
// Very special case, super send in class method. The receiver is
// self (the class object) and the send uses super semantics.
if (!OID) {
assert(!strcmp(E->getClassName()->getName(), "super") &&
assert(E->getClassName()->isName("super")) &&
"Unexpected missing class interface in message send.");
isSuperMessage = true;
Receiver = LoadObjCSelf();