Simplify the Objective-C exception handling.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64031 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h
index 1a251d1..ce32a45 100644
--- a/lib/CodeGen/CodeGenFunction.h
+++ b/lib/CodeGen/CodeGenFunction.h
@@ -95,18 +95,13 @@
   // 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;