remove some incorrect classof's.
authorChris Lattner <sabre@nondot.org>
Fri, 11 Jan 2008 23:25:16 +0000 (23:25 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 11 Jan 2008 23:25:16 +0000 (23:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45893 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/SelectionDAGNodes.h

index 2d801a1f8b97bcce048c2a04711d33143b3d9cca..47e3feb1388bdba4fc1bec0308ec0a95d1adbf9c 100644 (file)
@@ -1543,7 +1543,6 @@ public:
   MVT::ValueType getLoadedVT() const { return LoadedVT; }
 
   static bool classof(const LoadSDNode *) { return true; }
-  static bool classof(const LSBaseSDNode *N) { return true; }
   static bool classof(const SDNode *N) {
     return N->getOpcode() == ISD::LOAD;
   }
@@ -1586,7 +1585,6 @@ public:
   MVT::ValueType getStoredVT() const { return StoredVT; }
 
   static bool classof(const StoreSDNode *) { return true; }
-  static bool classof(const LSBaseSDNode *N) { return true; }
   static bool classof(const SDNode *N) {
     return N->getOpcode() == ISD::STORE;
   }