[llvm-commits] [llvm] r44757 - /llvm/trunk/include/llvm/IntrinsicInst.h

Chris Lattner sabre at nondot.org
Sun Dec 9 17:51:38 PST 2007


Author: lattner
Date: Sun Dec  9 19:51:38 2007
New Revision: 44757

URL: http://llvm.org/viewvc/llvm-project?rev=44757&view=rev
Log:
remove some dead code. 

Modified:
    llvm/trunk/include/llvm/IntrinsicInst.h

Modified: llvm/trunk/include/llvm/IntrinsicInst.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IntrinsicInst.h?rev=44757&r1=44756&r2=44757&view=diff

==============================================================================
--- llvm/trunk/include/llvm/IntrinsicInst.h (original)
+++ llvm/trunk/include/llvm/IntrinsicInst.h Sun Dec  9 19:51:38 2007
@@ -38,11 +38,6 @@
     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 @@
     }
     
     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 @@
     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 @@
     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 @@
     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 @@
     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 @@
     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 @@
     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 @@
     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 @@
     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;  
   };
 
 }





More information about the llvm-commits mailing list