diff options
author | Nico Weber <nicolasweber@gmx.de> | 2015-02-26 20:43:00 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2015-02-26 20:43:00 +0000 |
commit | 6307cf0aa33e0401a67c981a20eb682ac8c93c58 (patch) | |
tree | fc1e7dfda2688a02e1064a2bc3b5a0e196acb2b2 | |
parent | 3c6963b806ee0588730eb37763eaa9ca375c8d02 (diff) | |
download | llvm-6307cf0aa33e0401a67c981a20eb682ac8c93c58.zip llvm-6307cf0aa33e0401a67c981a20eb682ac8c93c58.tar.gz llvm-6307cf0aa33e0401a67c981a20eb682ac8c93c58.tar.bz2 |
Wrap to 80 columns. No behavior change.
llvm-svn: 230682
-rw-r--r-- | clang/lib/CodeGen/CGObjCMac.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CGObjCMac.cpp b/clang/lib/CodeGen/CGObjCMac.cpp index f91e8e1..b9fdf73 100644 --- a/clang/lib/CodeGen/CGObjCMac.cpp +++ b/clang/lib/CodeGen/CGObjCMac.cpp @@ -3810,15 +3810,16 @@ void CGObjCMac::EmitTryOrSynchronizedStmt(CodeGen::CodeGenFunction &CGF, // Enter a try block: // - Call objc_exception_try_enter to push ExceptionData on top of // the EH stack. - CGF.EmitNounwindRuntimeCall(ObjCTypes.getExceptionTryEnterFn(), ExceptionData); + CGF.EmitNounwindRuntimeCall(ObjCTypes.getExceptionTryEnterFn(), + ExceptionData); // - Call setjmp on the exception data buffer. llvm::Constant *Zero = llvm::ConstantInt::get(CGF.Builder.getInt32Ty(), 0); llvm::Value *GEPIndexes[] = { Zero, Zero, Zero }; llvm::Value *SetJmpBuffer = CGF.Builder.CreateGEP(ExceptionData, GEPIndexes, "setjmp_buffer"); - llvm::CallInst *SetJmpResult = - CGF.EmitNounwindRuntimeCall(ObjCTypes.getSetJmpFn(), SetJmpBuffer, "setjmp_result"); + llvm::CallInst *SetJmpResult = CGF.EmitNounwindRuntimeCall( + ObjCTypes.getSetJmpFn(), SetJmpBuffer, "setjmp_result"); SetJmpResult->setCanReturnTwice(); // If setjmp returned 0, enter the protected block; otherwise, |