diff options
author | Eric Christopher <echristo@apple.com> | 2011-06-17 17:04:30 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-06-17 17:04:30 +0000 |
commit | c2e40c64a06ab6ce89ca1863bc6a3416881f1821 (patch) | |
tree | 0042d862e1b6befee51d6d20d5d7be00fa7f0d3f /clang/test | |
parent | 6c9d31eb257c803e0707906b9556b91aa4017c51 (diff) | |
download | bcm5719-llvm-c2e40c64a06ab6ce89ca1863bc6a3416881f1821.tar.gz bcm5719-llvm-c2e40c64a06ab6ce89ca1863bc6a3416881f1821.zip |
Remove another variable.
llvm-svn: 133262
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/CodeGen/arm-asm-variable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/arm-asm-variable.c b/clang/test/CodeGen/arm-asm-variable.c index 93df702aac3..20648e4cc37 100644 --- a/clang/test/CodeGen/arm-asm-variable.c +++ b/clang/test/CodeGen/arm-asm-variable.c @@ -16,7 +16,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* + // CHECK: call %0 asm sideeffect "ldrexd$0, $1, [$2]", "={r1},={r2},r,~{memory}"(i64* return r; } |