fix save-o

llvm-svn: 59611
This commit is contained in:
Chris Lattner 2008-11-19 08:26:36 +00:00
parent d9c7bcf4bc
commit e503373e67
1 changed files with 1 additions and 1 deletions

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(E->getClassName()->isName("super")) &&
assert(E->getClassName()->isName("super") &&
"Unexpected missing class interface in message send.");
isSuperMessage = true;
Receiver = LoadObjCSelf();