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