aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2006-12-16 06:21:55 +0000
committerEvan Cheng <evan.cheng@apple.com>2006-12-16 06:21:55 +0000
commit6d0b3295777f0e9e9cce27f3473c19f78e88f700 (patch)
tree14e2ca2bc5c60ff31d4e74eb28214cf7576f8790 /include
parent4c8e36934fd3ba6d0dbe4d8c2d3ea9909a01c383 (diff)
downloadexternal_llvm-6d0b3295777f0e9e9cce27f3473c19f78e88f700.zip
external_llvm-6d0b3295777f0e9e9cce27f3473c19f78e88f700.tar.gz
external_llvm-6d0b3295777f0e9e9cce27f3473c19f78e88f700.tar.bz2
Typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32628 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/SelectionDAGNodes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h
index ef27bc1..f7c7535 100644
--- a/include/llvm/CodeGen/SelectionDAGNodes.h
+++ b/include/llvm/CodeGen/SelectionDAGNodes.h
@@ -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;
}