From: Dale Johannesen Date: Thu, 28 Feb 2008 18:36:51 +0000 (+0000) Subject: Fix an assertion message. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=cd9f1747ab72f9863924fbdf43493d9fa6256719;p=oota-llvm.git Fix an assertion message. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47722 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp index e0069b553fb..37dab7d7c16 100644 --- a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp +++ b/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(),