aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-01-11 23:25:16 +0000
committerChris Lattner <sabre@nondot.org>2008-01-11 23:25:16 +0000
commit2769f6fc59cb3bae445e9eff3b5275336665fb9b (patch)
tree79c6a847e5a5f43e0e9c4139e536ab341f3ab435 /include/llvm
parentbfc5ae6df028a455efd24dc0bb223e717e0e3655 (diff)
downloadexternal_llvm-2769f6fc59cb3bae445e9eff3b5275336665fb9b.zip
external_llvm-2769f6fc59cb3bae445e9eff3b5275336665fb9b.tar.gz
external_llvm-2769f6fc59cb3bae445e9eff3b5275336665fb9b.tar.bz2
remove some incorrect classof's.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45893 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/CodeGen/SelectionDAGNodes.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h
index 2d801a1..47e3feb 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;
}