From: David Chisnall Date: Thu, 1 Dec 2011 18:40:09 +0000 (+0000) Subject: Fix -forwardingTargetForSelector: (GNUstep runtime) which was broken for the X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=403bc3f85f3b3461b73abdd9c632980bf95f34bd;p=clang Fix -forwardingTargetForSelector: (GNUstep runtime) which was broken for the old dispatch mechanism when I introduced the new one. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@145609 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGObjCGNU.cpp b/lib/CodeGen/CGObjCGNU.cpp index b6e07ab83d..0a207ab76d 100644 --- a/lib/CodeGen/CGObjCGNU.cpp +++ b/lib/CodeGen/CGObjCGNU.cpp @@ -1196,6 +1196,8 @@ CGObjCGNU::GenerateMessageSend(CodeGenFunction &CGF, } } + // Reset the receiver in case the lookup modified it + ActualArgs[0] = CallArg(RValue::get(Receiver), ASTIdTy, false); llvm::FunctionType *impType = Types.GetFunctionType(FnInfo, Method ? Method->isVariadic() : false);