[llvm-commits] [llvm] r127236 - /llvm/trunk/test/FrontendC/mmx-inline-asm.c

Bill Wendling isanbard at gmail.com
Tue Mar 8 02:27:58 PST 2011


Author: void
Date: Tue Mar  8 04:27:58 2011
New Revision: 127236

URL: http://llvm.org/viewvc/llvm-project?rev=127236&view=rev
Log:
Testcase for r127187.

Added:
    llvm/trunk/test/FrontendC/mmx-inline-asm.c

Added: llvm/trunk/test/FrontendC/mmx-inline-asm.c
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC/mmx-inline-asm.c?rev=127236&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC/mmx-inline-asm.c (added)
+++ llvm/trunk/test/FrontendC/mmx-inline-asm.c Tue Mar  8 04:27:58 2011
@@ -0,0 +1,24 @@
+// RUN: %llvmgcc -S -o - %s | FileCheck %s
+// XFAIL: *
+// XTARGET: x86,i386,i686
+// <rdar://problem/9091220>
+#include <mmintrin.h>
+
+// CHECK: type { x86_mmx, x86_mmx, x86_mmx, x86_mmx, x86_mmx, x86_mmx, x86_mmx }
+
+void foo(long long fill) {
+  __m64 vfill = _mm_cvtsi64_m64(fill);
+  __m64 v1, v2, v3, v4, v5, v6, v7;
+
+  __asm__ __volatile__ (
+    "\tmovq  %7, %0\n"
+    "\tmovq  %7, %1\n"
+    "\tmovq  %7, %2\n"
+    "\tmovq  %7, %3\n"
+    "\tmovq  %7, %4\n"
+    "\tmovq  %7, %5\n"
+    "\tmovq  %7, %6"
+    : "=&y" (v1), "=&y" (v2), "=&y" (v3),
+      "=&y" (v4), "=&y" (v5), "=&y" (v6), "=y" (v7)
+    : "y" (vfill));
+}





More information about the llvm-commits mailing list