Rewrite match line to be friendlier to misc buildbots.

llvm-svn: 136169
This commit is contained in:
Eric Christopher 2011-07-26 22:44:31 +00:00
parent cf2ea54160
commit 19520147fc
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}