From 2769f6fc59cb3bae445e9eff3b5275336665fb9b Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 11 Jan 2008 23:25:16 +0000 Subject: [PATCH] remove some incorrect classof's. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45893 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/SelectionDAGNodes.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index 2d801a1f8b9..47e3feb1388 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -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; } -- 2.34.1