mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Fix an assertion message.
llvm-svn: 47722
This commit is contained in:
parent
f0329b6170
commit
8e6309464b
@ -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(),
|
||||
|
Loading…
Reference in New Issue
Block a user