diff options
author | Duncan Sands <baldrick@free.fr> | 2010-09-09 12:43:44 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2010-09-09 12:43:44 +0000 |
commit | 3dbbb3d398318cb3c14bf650bda047a55dbb0f58 (patch) | |
tree | bbf098d0a96dca777f31fe60a56215689debf82e /test/FrontendC/2010-05-18-asmsched.c | |
parent | ca64b6ad0e7579d7b90ec2dde76d4fe8b3135cca (diff) |
On i386, llvm-gcc cannot be assumed to support -m64. Since these
tests pass here (i686-linux and x86-64-linux) without -m64, simply
remove the -m64.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113483 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC/2010-05-18-asmsched.c')
-rw-r--r-- | test/FrontendC/2010-05-18-asmsched.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/FrontendC/2010-05-18-asmsched.c b/test/FrontendC/2010-05-18-asmsched.c index 34abbe3e5c..12e91405d1 100644 --- a/test/FrontendC/2010-05-18-asmsched.c +++ b/test/FrontendC/2010-05-18-asmsched.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc %s -c -O3 -m64 -emit-llvm -o - | llc -march=x86-64 -mtriple=x86_64-apple-darwin | FileCheck %s +// RUN: %llvmgcc %s -c -O3 -emit-llvm -o - | llc -march=x86-64 -mtriple=x86_64-apple-darwin | FileCheck %s // r9 used to be clobbered before its value was moved to r10. 7993104. void foo(int x, int y) { @@ -14,4 +14,4 @@ void foo(int x, int y) { lr9 = x; lr10 = foo; asm volatile("bar" : "=r"(lr9) : "r"(lr9), "r"(lr10)); -}
\ No newline at end of file +} |