remove some incorrect classof's.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45893 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2008-01-11 23:25:16 +00:00
parent bfc5ae6df0
commit 2769f6fc59

View 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;
}