Index: lib/CodeGen/CGObjC.cpp =================================================================== --- lib/CodeGen/CGObjC.cpp +++ lib/CodeGen/CGObjC.cpp @@ -2631,7 +2631,19 @@ value = Builder.CreateBitCast(value, Int8PtrTy); // Call objc_release. - llvm::CallInst *call = EmitNounwindRuntimeCall(fn, value); + ASTContext &Ctx = getContext(); + const ImplicitParamDecl *paramDecl = + ImplicitParamDecl::Create(Ctx, nullptr, SourceLocation(), nullptr, + Ctx.VoidPtrTy, ImplicitParamDecl::Other); + FunctionArgList funcArgs; + funcArgs.push_back(paramDecl); + const CGFunctionInfo &fnInfo = + CGM.getTypes().arrangeBuiltinFunctionDeclaration(Ctx.VoidTy, funcArgs); + CallArgList args; + args.add(RValue::get(value), Ctx.VoidPtrTy); + llvm::CallBase *call; + EmitCall(fnInfo, CGCallee::forDirect(cast(fn.getCallee())), + ReturnValueSlot(), args, &call); if (precise == ARCImpreciseLifetime) { call->setMetadata("clang.imprecise_release", Index: test/CodeGenObjC/convert-messages-to-runtime-calls.m =================================================================== --- test/CodeGenObjC/convert-messages-to-runtime-calls.m +++ test/CodeGenObjC/convert-messages-to-runtime-calls.m @@ -175,3 +175,14 @@ @end +@class Ety; + +// CHECK-LABEL: define {{.*}}void @testException +void testException(NSObject *a) { + // MSGS: {{invoke.*@objc_msgSend}} + // CALLS: invoke{{.*}}void @objc_release(i8* % + @try { + [a release]; + } @catch (Ety *e) { + } +}