diff options
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 320e26b82d..248bb18262 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -125,8 +125,9 @@ public: /// /// \param ExecuteTryExit - When true, the try_exit runtime function /// should be called prior to executing the finally code. - void EmitJumpThroughFinally(ObjCEHEntry *Entry, llvm::BasicBlock *Dest, - bool ExecuteTryExit=true); + void EmitJumpThroughFinally(ObjCEHEntry *Entry, llvm::BasicBlock *Dest); + + void EmitJumpThroughFinally(llvm::BasicBlock *Dest); /// PushCleanupBlock - Push a new cleanup entry on the stack and set the /// passed in block as the cleanup block. |