]> granicus.if.org Git - clang/commitdiff
fix incorrect lowering of __builtin_ia32_shufpd, rdar://6803924
authorChris Lattner <sabre@nondot.org>
Sat, 18 Apr 2009 07:01:54 +0000 (07:01 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 18 Apr 2009 07:01:54 +0000 (07:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69428 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGBuiltin.cpp
test/CodeGen/x86.c

index 5ef01ac5f0df540005c09c39379f0f41b09ed7be..e7adf721909b2ef323397c3eb07b72e2de5f1c3e 100644 (file)
@@ -891,7 +891,8 @@ Value *CodeGenFunction::EmitX86BuiltinExpr(unsigned BuiltinID,
   }
   case X86::BI__builtin_ia32_shufpd: {
     unsigned i = cast<ConstantInt>(Ops[2])->getZExtValue();
-    return EmitShuffleVector(Ops[0], Ops[1], i & 1, (i & 2) + 2, "shufpd");
+    return EmitShuffleVector(Ops[0], Ops[1], i & 1,
+                             ((i & 2) >> 1)+2, "shufpd");
   }
   case X86::BI__builtin_ia32_punpcklbw128:
     return EmitShuffleVector(Ops[0], Ops[1], 0, 16, 1, 17, 2, 18, 3, 19,
index d12f26c0df81afd0534fa96df386f63e12a26342..10808dca8782e1978e5af85271edeb7f965ab223 100644 (file)
@@ -8,8 +8,16 @@
 // RUN: grep "st" %t1 &&
 // RUN: grep "st(1)" %t1
 
-void f() {
+void test1() {
   int d1, d2;
   asm ("" : "=a" (d1), "=b" (d2) :
        "c" (0), "d" (0), "S" (0), "D" (0), "t" (0), "u" (0));
 }
+
+
+// rdar://6803924
+typedef double T __attribute__ ((__vector_size__ (16)));
+T test2(T va) {
+  return __builtin_ia32_shufpd(va, va, 3);
+}
+