summaryrefslogtreecommitdiff
path: root/include/llvm/IntrinsicInst.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-12-10 01:51:38 +0000
committerChris Lattner <sabre@nondot.org>2007-12-10 01:51:38 +0000
commit65b211807d524d50d8bb3429a4c5049fb2d3d3ac (patch)
treeb016ddf5c25aedf133c983cfd00d1d9985dd4570 /include/llvm/IntrinsicInst.h
parentd418239da7952236cefc20d592e46912672732b7 (diff)
downloadllvm-65b211807d524d50d8bb3429a4c5049fb2d3d3ac.tar.gz
llvm-65b211807d524d50d8bb3429a4c5049fb2d3d3ac.tar.bz2
llvm-65b211807d524d50d8bb3429a4c5049fb2d3d3ac.tar.xz
remove some dead code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44757 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/IntrinsicInst.h')
-rw-r--r--include/llvm/IntrinsicInst.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/include/llvm/IntrinsicInst.h b/include/llvm/IntrinsicInst.h
index 97c07d810d..4e4d47513d 100644
--- a/include/llvm/IntrinsicInst.h
+++ b/include/llvm/IntrinsicInst.h
@@ -38,11 +38,6 @@ namespace llvm {
IntrinsicInst(); // DO NOT IMPLEMENT
IntrinsicInst(const IntrinsicInst&); // DO NOT IMPLEMENT
void operator=(const IntrinsicInst&); // DO NOT IMPLEMENT
- protected:
- static void destroyThis(IntrinsicInst* v) {
- CallInst::destroyThis(v);
- }
- friend class Value;
public:
/// StripPointerCasts - This static method strips off any unneeded pointer
@@ -90,11 +85,6 @@ namespace llvm {
}
static Value *StripCast(Value *C);
- protected:
- static void destroyThis(DbgInfoIntrinsic* v) {
- IntrinsicInst::destroyThis(v);
- }
- friend class Value;
};
/// DbgStopPointInst - This represents the llvm.dbg.stoppoint instruction.
@@ -124,11 +114,6 @@ namespace llvm {
static inline bool classof(const Value *V) {
return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V));
}
- protected:
- static void destroyThis(DbgStopPointInst* v) {
- DbgInfoIntrinsic::destroyThis(v);
- }
- friend class Value;
};
/// DbgFuncStartInst - This represents the llvm.dbg.func.start instruction.
@@ -144,11 +129,6 @@ namespace llvm {
static inline bool classof(const Value *V) {
return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V));
}
- protected:
- static void destroyThis(DbgFuncStartInst* v) {
- DbgInfoIntrinsic::destroyThis(v);
- }
- friend class Value;
};
/// DbgRegionStartInst - This represents the llvm.dbg.region.start
@@ -164,11 +144,6 @@ namespace llvm {
static inline bool classof(const Value *V) {
return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V));
}
- protected:
- static void destroyThis(DbgRegionStartInst* v) {
- DbgInfoIntrinsic::destroyThis(v);
- }
- friend class Value;
};
/// DbgRegionEndInst - This represents the llvm.dbg.region.end instruction.
@@ -200,11 +175,6 @@ namespace llvm {
static inline bool classof(const Value *V) {
return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V));
}
- protected:
- static void destroyThis(DbgDeclareInst* v) {
- DbgInfoIntrinsic::destroyThis(v);
- }
- friend class Value;
};
/// MemIntrinsic - This is the common base class for memset/memcpy/memmove.
@@ -258,11 +228,6 @@ namespace llvm {
static inline bool classof(const Value *V) {
return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V));
}
- protected:
- static void destroyThis(MemIntrinsic* v) {
- IntrinsicInst::destroyThis(v);
- }
- friend class Value;
};
@@ -294,11 +259,6 @@ namespace llvm {
static inline bool classof(const Value *V) {
return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V));
}
- protected:
- static void destroyThis(MemCpyInst* v) {
- MemIntrinsic::destroyThis(v);
- }
- friend class Value;
};
/// MemMoveInst - This class wraps the llvm.memmove intrinsic.
@@ -328,11 +288,6 @@ namespace llvm {
static inline bool classof(const Value *V) {
return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V));
}
- protected:
- static void destroyThis(MemMoveInst* v) {
- MemIntrinsic::destroyThis(v);
- }
- friend class Value;
};
/// MemSetInst - This class wraps the llvm.memset intrinsic.
@@ -357,11 +312,6 @@ namespace llvm {
static inline bool classof(const Value *V) {
return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V));
}
- protected:
- static void destroyThis(MemSetInst* v) {
- MemIntrinsic::destroyThis(v);
- }
- friend class Value;
};
}