diff options
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 1a251d1363..ce32a45a5d 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -95,18 +95,13 @@ public: // inside @catch blocks and which @finally block exits from an EH // scope should be chained through. struct ObjCEHEntry { - ObjCEHEntry(llvm::BasicBlock *fb, llvm::BasicBlock *fne, - llvm::SwitchInst *fs, llvm::Value *dc) - : FinallyBlock(fb), FinallyNoExit(fne), FinallySwitch(fs), + ObjCEHEntry(llvm::BasicBlock *fb, llvm::SwitchInst *fs, llvm::Value *dc) + : FinallyBlock(fb), FinallySwitch(fs), DestCode(dc), Exception(0) {} /// Entry point to the finally block. llvm::BasicBlock *FinallyBlock; - /// Entry point to the finally block which skips execution of the - /// try_exit runtime function. - llvm::BasicBlock *FinallyNoExit; - /// Switch instruction which runs at the end of the finally block /// to forward jumps through the finally block. llvm::SwitchInst *FinallySwitch; |