aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/arm-asm-variable.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/arm-asm-variable.c')
-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 f874269b0a01..6868cb7996ab 100644
--- a/test/CodeGen/arm-asm-variable.c
+++ b/test/CodeGen/arm-asm-variable.c
@@ -17,7 +17,7 @@ int64_t foo(int64_t v, volatile int64_t *p)
: [_rl] "=&r" (rl), [_rh] "=&r" (rh) \
: [_p] "p" (p) : "memory");
- // CHECK: call { i32, i32 } asm sideeffect "ldrexd$0, $1, [$2]", "={r1},={r2},r,~{memory}"(i64*
+ // CHECK: call { i32, i32 } asm sideeffect "ldrexd$0, $1, [$2]", "=&{r1},=&{r2},r,~{memory}"(i64*
return r;
}