mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-02 10:32:56 +00:00
[SelectionDAG] Fix assert message copypasta. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227119 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
afb6a4fe7f
commit
6f9c8fa5d4
@ -4738,10 +4738,10 @@ SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
|
||||
assert(VT.isInteger() == MemVT.isInteger() &&
|
||||
"Cannot convert from FP to Int or Int -> FP!");
|
||||
assert(VT.isVector() == MemVT.isVector() &&
|
||||
"Cannot use trunc store to convert to or from a vector!");
|
||||
"Cannot use an ext load to convert to or from a vector!");
|
||||
assert((!VT.isVector() ||
|
||||
VT.getVectorNumElements() == MemVT.getVectorNumElements()) &&
|
||||
"Cannot use trunc store to change the number of vector elements!");
|
||||
"Cannot use an ext load to change the number of vector elements!");
|
||||
}
|
||||
|
||||
bool Indexed = AM != ISD::UNINDEXED;
|
||||
|
Loading…
x
Reference in New Issue
Block a user