[llvm-commits] [dragonegg] r85721 - /dragonegg/trunk/x86/llvm-target.cpp
Duncan Sands
baldrick at free.fr
Sun Nov 1 10:05:09 PST 2009
Author: baldrick
Date: Sun Nov 1 12:05:09 2009
New Revision: 85721
URL: http://llvm.org/viewvc/llvm-project?rev=85721&view=rev
Log:
Change a label name to match gcc-4.5.
Modified:
dragonegg/trunk/x86/llvm-target.cpp
Modified: dragonegg/trunk/x86/llvm-target.cpp
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/x86/llvm-target.cpp?rev=85721&r1=85720&r2=85721&view=diff
==============================================================================
--- dragonegg/trunk/x86/llvm-target.cpp (original)
+++ dragonegg/trunk/x86/llvm-target.cpp Sun Nov 1 12:05:09 2009
@@ -152,7 +152,7 @@
{"__builtin_ia32_loadups256", &&IX86_BUILTIN_LOADUPS},
{"__builtin_ia32_movhlps", &&IX86_BUILTIN_MOVHLPS},
{"__builtin_ia32_movlhps", &&IX86_BUILTIN_MOVLHPS},
- {"__builtin_ia32_movq128", &&IX86_BUILTIN_MOVQ},
+ {"__builtin_ia32_movq128", &&IX86_BUILTIN_MOVQ128},
{"__builtin_ia32_movsd", &&IX86_BUILTIN_MOVSD},
{"__builtin_ia32_movshdup", &&IX86_BUILTIN_MOVSHDUP},
{"__builtin_ia32_movshdup256", &&IX86_BUILTIN_MOVSHDUP},
@@ -494,7 +494,7 @@
IX86_BUILTIN_MOVSD:
Result = BuildVectorShuffle(Ops[0], Ops[1], 2, 1);
return true;
- IX86_BUILTIN_MOVQ: {
+ IX86_BUILTIN_MOVQ128: {
Value *Zero = ConstantInt::get(Type::getInt32Ty(Context), 0);
Result = BuildVector(Zero, Zero, Zero, Zero, NULL);
Result = BuildVectorShuffle(Result, Ops[0], 4, 5, 2, 3);
More information about the llvm-commits
mailing list