diff options
author | Nico Weber <nicolasweber@gmx.de> | 2015-02-11 22:33:32 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2015-02-11 22:33:32 +0000 |
commit | 1bebad1b865c5de81c9c7bb4ad10ca0489bcdd68 (patch) | |
tree | 485091a0f2d69bfb23e49aa1fe49cd0c3b5e4859 | |
parent | 3df3c61e91974fa3d3dcb053b977d1c7d8daa55c (diff) | |
download | bcm5719-llvm-1bebad1b865c5de81c9c7bb4ad10ca0489bcdd68.tar.gz bcm5719-llvm-1bebad1b865c5de81c9c7bb4ad10ca0489bcdd68.zip |
Wrap to 80 columns. No behavior change.
llvm-svn: 228880
-rw-r--r-- | clang/lib/CodeGen/CGException.cpp | 8 | ||||
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 3 |
2 files changed, 7 insertions, 4 deletions
diff --git a/clang/lib/CodeGen/CGException.cpp b/clang/lib/CodeGen/CGException.cpp index b8ce205ff1b..4ec87e07dfb 100644 --- a/clang/lib/CodeGen/CGException.cpp +++ b/clang/lib/CodeGen/CGException.cpp @@ -454,7 +454,8 @@ llvm::Value *CodeGenFunction::getSelectorFromSlot() { llvm::Value *CodeGenFunction::getAbnormalTerminationSlot() { if (!AbnormalTerminationSlot) - AbnormalTerminationSlot = CreateTempAlloca(Int8Ty, "abnormal.termination.slot"); + AbnormalTerminationSlot = + CreateTempAlloca(Int8Ty, "abnormal.termination.slot"); return AbnormalTerminationSlot; } @@ -586,8 +587,9 @@ static void emitFilterDispatchBlock(CodeGenFunction &CGF, llvm::Value *zero = CGF.Builder.getInt32(0); llvm::Value *failsFilter = - CGF.Builder.CreateICmpSLT(selector, zero, "ehspec.fails"); - CGF.Builder.CreateCondBr(failsFilter, unexpectedBB, CGF.getEHResumeBlock(false)); + CGF.Builder.CreateICmpSLT(selector, zero, "ehspec.fails"); + CGF.Builder.CreateCondBr(failsFilter, unexpectedBB, + CGF.getEHResumeBlock(false)); CGF.EmitBlock(unexpectedBB); } diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 6011333c9dd..9a0fe17d856 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -1301,7 +1301,8 @@ public: /// legal to call this function even if there is no current insertion point. void FinishFunction(SourceLocation EndLoc=SourceLocation()); - void StartThunk(llvm::Function *Fn, GlobalDecl GD, const CGFunctionInfo &FnInfo); + void StartThunk(llvm::Function *Fn, GlobalDecl GD, + const CGFunctionInfo &FnInfo); void EmitCallAndReturnForThunk(llvm::Value *Callee, const ThunkInfo *Thunk); |