summaryrefslogtreecommitdiff
path: root/include/llvm/IntrinsicInst.h
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-10-29 00:37:35 +0000
committerBill Wendling <isanbard@gmail.com>2009-10-29 00:37:35 +0000
commit8bedf97f683bd5edb9308799a5e525de137d635c (patch)
treefcc12f795ced9d301bef9ca3f1e11fb997788f94 /include/llvm/IntrinsicInst.h
parentf25cf3d56f54a1f736db066924e6db886b3f5f3d (diff)
downloadllvm-8bedf97f683bd5edb9308799a5e525de137d635c.tar.gz
llvm-8bedf97f683bd5edb9308799a5e525de137d635c.tar.bz2
llvm-8bedf97f683bd5edb9308799a5e525de137d635c.tar.xz
Don't put in these EH changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85460 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/IntrinsicInst.h')
-rw-r--r--include/llvm/IntrinsicInst.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/include/llvm/IntrinsicInst.h b/include/llvm/IntrinsicInst.h
index ee5f23a751..6a8f376392 100644
--- a/include/llvm/IntrinsicInst.h
+++ b/include/llvm/IntrinsicInst.h
@@ -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 {