mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Fix broken assert, PR24624
llvm-svn: 265989
This commit is contained in:
parent
338186f6bb
commit
f1f7a0ce15
@ -473,7 +473,7 @@ LowerFormalArguments_32(SDValue Chain,
|
||||
auto PtrVT = getPointerTy(DAG.getDataLayout());
|
||||
|
||||
if (VA.needsCustom()) {
|
||||
assert(VA.getValVT() == MVT::f64 || MVT::v2i32);
|
||||
assert(VA.getValVT() == MVT::f64 || VA.getValVT() == MVT::v2i32);
|
||||
// If it is double-word aligned, just load.
|
||||
if (Offset % 8 == 0) {
|
||||
int FI = MF.getFrameInfo()->CreateFixedObject(8,
|
||||
|
Loading…
Reference in New Issue
Block a user