diff options
Diffstat (limited to 'clang/test/CodeGen/asm-2.c')
-rw-r--r-- | clang/test/CodeGen/asm-2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/asm-2.c b/clang/test/CodeGen/asm-2.c index a58a781e72b..f5b378eb101 100644 --- a/clang/test/CodeGen/asm-2.c +++ b/clang/test/CodeGen/asm-2.c @@ -1,4 +1,4 @@ -// RUN: clang-cc -emit-llvm %s -o %t -arch=i386 -O2 && +// RUN: clang-cc -emit-llvm %s -o %t -triple i386-pc-linux-gnu -O2 && // RUN: not grep "load" %t // <rdar://problem/6841383> @@ -7,4 +7,4 @@ int cpuid(unsigned data) { asm("xyz" :"=a"(a), "=d"(b) : "a"(data)); return a + b; -}
\ No newline at end of file +} |