aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2011-06-17 05:24:17 +0000
committerEric Christopher <echristo@apple.com>2011-06-17 05:24:17 +0000
commitb165ed7f282b736bb7fe9fa5e98455a437d23fa4 (patch)
tree1a0080639c74197dfb88ac3e8979cb721b1a5b93
parentb7edc4f372f1abe6c422ea711a99f9906a7464da (diff)
Make this test suitable for optimized builds by avoiding the name.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@133238 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/arm-asm-variable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/arm-asm-variable.c b/test/CodeGen/arm-asm-variable.c
index a47356a6d6..2cd60972f6 100644
--- a/test/CodeGen/arm-asm-variable.c
+++ b/test/CodeGen/arm-asm-variable.c
@@ -20,7 +20,7 @@ int64_t foo(int64_t v, volatile int64_t *p)
: [_rl] "=&r" (rl), [_rh] "=&r" (rh) \
: [_p] "p" (p) : "memory");
- // CHECK: %0 = call %0 asm sideeffect "ldrexd$0, $1, [$2]", "={r1},={r2},r,~{memory}"(i64* %tmp)
+ // CHECK: %0 = call %0 asm sideeffect "ldrexd$0, $1, [$2]", "={r1},={r2},r,~{memory}"(i64*
return r;
}