mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-02 18:58:15 +00:00
simplify
llvm-svn: 59610
This commit is contained in:
parent
4bd8dd8568
commit
d9c7bcf4bc
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user