aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2011-07-26 22:44:31 +0000
committerEric Christopher <echristo@apple.com>2011-07-26 22:44:31 +0000
commit0c14190ae46a470fe929a764e1ac8ada2236b330 (patch)
tree9663a0d7268a77ce8842512674c3d9dd9f049eea
parent2924da319e5a0d76d1ce8462c7029e6395884662 (diff)
Rewrite match line to be friendlier to misc buildbots.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@136169 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/2010-05-26-AsmSideEffect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/2010-05-26-AsmSideEffect.c b/test/CodeGen/2010-05-26-AsmSideEffect.c
index c26fd1453c..e99ec61880 100644
--- a/test/CodeGen/2010-05-26-AsmSideEffect.c
+++ b/test/CodeGen/2010-05-26-AsmSideEffect.c
@@ -3,7 +3,7 @@
int test (void *src) {
register int w0 asm ("0");
- // CHECK: call i32 asm "ldr $0, [$1]", "={ax},r,~{dirflag},~{fpsr},~{flags}"(i8* %tmp)
+ // CHECK: call i32 asm "ldr $0, [$1]", "={ax},r,~{dirflag},~{fpsr},~{flags}"(i8*
asm ("ldr %0, [%1]": "=r" (w0): "r" (src));
return w0;
}