[cfe-commits] r63426 - /cfe/trunk/lib/CodeGen/CGCall.cpp

Daniel Dunbar daniel at zuster.org
Fri Jan 30 13:50:20 PST 2009


Author: ddunbar
Date: Fri Jan 30 15:50:20 2009
New Revision: 63426

URL: http://llvm.org/viewvc/llvm-project?rev=63426&view=rev
Log:
x86_64 ABI: Fix thinko in prev commit, 64-bit vectors should have SSE
class, not integer.

Modified:
    cfe/trunk/lib/CodeGen/CGCall.cpp

Modified: cfe/trunk/lib/CodeGen/CGCall.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGCall.cpp?rev=63426&r1=63425&r2=63426&view=diff

==============================================================================
--- cfe/trunk/lib/CodeGen/CGCall.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGCall.cpp Fri Jan 30 15:50:20 2009
@@ -527,7 +527,7 @@
         return;
       }
 
-      Lo = Integer;
+      Lo = SSE;
 
       // If this type crosses an eightbyte boundary, it should be
       // split.





More information about the cfe-commits mailing list