forked from OSchip/llvm-project
x86_64 ABI: Fix thinko in prev commit, 64-bit vectors should have SSE
class, not integer. llvm-svn: 63426
This commit is contained in:
parent
d51e3ff540
commit
c35dca92f5
|
@ -527,7 +527,7 @@ void X86_64ABIInfo::classify(QualType Ty,
|
|||
return;
|
||||
}
|
||||
|
||||
Lo = Integer;
|
||||
Lo = SSE;
|
||||
|
||||
// If this type crosses an eightbyte boundary, it should be
|
||||
// split.
|
||||
|
|
Loading…
Reference in New Issue