Don't put in these EH changes.
[oota-llvm.git] / include / llvm / IntrinsicInst.h
index ee5f23a751148e27d8faf2a572591842194a5bcd..6a8f3763926139fd0854a77b09380f31d3b72ac3 100644 (file)
@@ -307,19 +307,6 @@ namespace llvm {
     }
   };
 
-  /// EHExceptionInst - This represents the llvm.eh.exception instruction.
-  ///
-  struct EHExceptionInst : public IntrinsicInst {
-    // Methods for support type inquiry through isa, cast, and dyn_cast:
-    static inline bool classof(const EHExceptionInst *) { return true; }
-    static inline bool classof(const IntrinsicInst *I) {
-      return I->getIntrinsicID() == Intrinsic::eh_exception;
-    }
-    static inline bool classof(const Value *V) {
-      return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V));
-    }
-  };
-
   /// EHSelectorInst - This represents the llvm.eh.selector instruction.
   ///
   struct EHSelectorInst : public IntrinsicInst {