[llvm-commits] [llvm] r45893 - /llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h

Chris Lattner sabre at nondot.org
Fri Jan 11 15:25:16 PST 2008


Author: lattner
Date: Fri Jan 11 17:25:16 2008
New Revision: 45893

URL: http://llvm.org/viewvc/llvm-project?rev=45893&view=rev
Log:
remove some incorrect classof's.

Modified:
    llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h

Modified: llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h?rev=45893&r1=45892&r2=45893&view=diff

==============================================================================
--- llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h (original)
+++ llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h Fri Jan 11 17:25:16 2008
@@ -1543,7 +1543,6 @@
   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 @@
   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;
   }





More information about the llvm-commits mailing list