summaryrefslogtreecommitdiffstats
path: root/test/CodeGen
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-03-22 23:32:07 +0000
committerBill Wendling <isanbard@gmail.com>2012-03-22 23:32:07 +0000
commit8ff6059b3d2acbdfcf4612d5a08259727dad3c87 (patch)
tree33f2b38fae8964f6f97b960b375e5e83937bf7fd /test/CodeGen
parentacb5310542b82e7acf5f5a91fa619e4b7efeff5c (diff)
Use correct FileCheck regexp.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@153291 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r--test/CodeGen/asm-inout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/asm-inout.c b/test/CodeGen/asm-inout.c
index 423bc4e82a..888304355b 100644
--- a/test/CodeGen/asm-inout.c
+++ b/test/CodeGen/asm-inout.c
@@ -42,7 +42,7 @@ int test4(volatile int *addr) {
// CHECK: @test5
typedef long long __m64 __attribute__((__vector_size__(8)));
__m64 test5(__m64 __A, __m64 __B) {
- // CHECK: call x86_mmx asm "pmulhuw $1, $0\0A\09", "=y,y,0,~{dirflag},~{fpsr},~{flags}"(x86_mmx %{{.}}, x86_mmx %{{.}})
+ // CHECK: call x86_mmx asm "pmulhuw $1, $0\0A\09", "=y,y,0,~{dirflag},~{fpsr},~{flags}"(x86_mmx %{{.*}}, x86_mmx %{{.*}})
asm("pmulhuw %1, %0\n\t" : "+y" (__A) : "y" (__B));
return __A;
}