From 403bc3f85f3b3461b73abdd9c632980bf95f34bd Mon Sep 17 00:00:00 2001 From: David Chisnall Date: Thu, 1 Dec 2011 18:40:09 +0000 Subject: [PATCH] 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 --- lib/CodeGen/CGObjCGNU.cpp | 2 ++ 1 file changed, 2 insertions(+) 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); -- 2.50.1