mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-18 17:59:45 +00:00
MMX parameters aren't handled here yet.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114844 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
61b20efd9a
commit
a8bd1ff8c5
@ -1599,6 +1599,9 @@ bool X86FastISel::X86SelectCall(const Instruction *I) {
|
||||
break;
|
||||
}
|
||||
case CCValAssign::AExt: {
|
||||
// We don't handle MMX parameters yet.
|
||||
if (VA.getLocVT().isVector() && VA.getLocVT().getSizeInBits() == 128)
|
||||
return false;
|
||||
bool Emitted = X86FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(),
|
||||
Arg, ArgVT, Arg);
|
||||
if (!Emitted)
|
||||
|
Loading…
x
Reference in New Issue
Block a user