1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

remove some incorrect classof's.

llvm-svn: 45893
This commit is contained in:
Chris Lattner 2008-01-11 23:25:16 +00:00
parent 6f49217a5e
commit 433aca5066

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