diff options
author | Eric Christopher <echristo@apple.com> | 2011-07-26 22:44:31 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-07-26 22:44:31 +0000 |
commit | 19520147fc76bcc78d474c9a844bedfea39e85c0 (patch) | |
tree | cecaf9201958071b59b0c32b81a02b1ef65908b0 /clang | |
parent | cf2ea54160d0e7fa0903223f28cf834ff8d82c7f (diff) | |
download | bcm5719-llvm-19520147fc76bcc78d474c9a844bedfea39e85c0.tar.gz bcm5719-llvm-19520147fc76bcc78d474c9a844bedfea39e85c0.zip |
Rewrite match line to be friendlier to misc buildbots.
llvm-svn: 136169
Diffstat (limited to 'clang')
-rw-r--r-- | clang/test/CodeGen/2010-05-26-AsmSideEffect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/2010-05-26-AsmSideEffect.c b/clang/test/CodeGen/2010-05-26-AsmSideEffect.c index c26fd1453c7..e99ec618800 100644 --- a/clang/test/CodeGen/2010-05-26-AsmSideEffect.c +++ b/clang/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; } |