diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-01-30 21:50:20 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-01-30 21:50:20 +0000 |
commit | c35dca92f58d3ec452b62eb071c22ae0a834b387 (patch) | |
tree | d89a7d66fe324d2866248787d15751bcee495bc3 | |
parent | d51e3ff5402bd5e973de0ef7c5c4af2506567c6e (diff) | |
download | bcm5719-llvm-c35dca92f58d3ec452b62eb071c22ae0a834b387.tar.gz bcm5719-llvm-c35dca92f58d3ec452b62eb071c22ae0a834b387.zip |
x86_64 ABI: Fix thinko in prev commit, 64-bit vectors should have SSE
class, not integer.
llvm-svn: 63426
-rw-r--r-- | clang/lib/CodeGen/CGCall.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGCall.cpp b/clang/lib/CodeGen/CGCall.cpp index cf4f60e3665..ba27200f2c1 100644 --- a/clang/lib/CodeGen/CGCall.cpp +++ b/clang/lib/CodeGen/CGCall.cpp @@ -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. |