summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2008-02-28 18:36:51 +0000
committerDale Johannesen <dalej@apple.com>2008-02-28 18:36:51 +0000
commitc4c3de2b52410cad657e900af8b7c7c2fadef2d4 (patch)
tree41a81f2b814ed0a20d006c649126043d7fce2346 /llvm/lib
parent643dce11465bb7e5278eb8dfd66890fefb51c108 (diff)
downloadbcm5719-llvm-c4c3de2b52410cad657e900af8b7c7c2fadef2d4.tar.gz
bcm5719-llvm-c4c3de2b52410cad657e900af8b7c7c2fadef2d4.zip
Fix an assertion message.
llvm-svn: 47722
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
index e0069b553fb..37dab7d7c16 100644
--- a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
@@ -587,7 +587,7 @@ SDOperand ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
else if (VT==MVT::f32)
intVT = MVT::i32;
else
- assert(0 && "Unaligned load of unsupported type");
+ assert(0 && "Unaligned store of unsupported type");
SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val);
return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(),
OpenPOWER on IntegriCloud