1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

MMX parameters aren't handled here yet.

llvm-svn: 114844
This commit is contained in:
Dale Johannesen 2010-09-27 17:29:47 +00:00
parent 6807dd822b
commit 119f97dcc3

View File

@ -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)