git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32628 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2006-12-16 06:21:55 +00:00
parent 4c8e36934f
commit 6d0b329577

View File

@ -1481,7 +1481,7 @@ public:
unsigned getAlignment() const { return Alignment; }
bool isVolatile() const { return IsVolatile; }
static bool classof(const LoadSDNode *) { return true; }
static bool classof(const StoreSDNode *) { return true; }
static bool classof(const SDNode *N) {
return N->getOpcode() == ISD::STORE;
}