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 | e194e0c0773078fd0a97bb0e0712db991315a9bc (patch) | |
tree | 86eb35f78de5dd7abadd53f351691bafa0bf2f66 /llvm/test/FrontendC/asm-reg-var-local.c | |
parent | d4b4b7e8a132d3c4889ec03fb01d33202e87dd97 (diff) | |
download | bcm5719-llvm-e194e0c0773078fd0a97bb0e0712db991315a9bc.tar.gz bcm5719-llvm-e194e0c0773078fd0a97bb0e0712db991315a9bc.zip |
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.
llvm-svn: 113483
Diffstat (limited to 'llvm/test/FrontendC/asm-reg-var-local.c')
-rw-r--r-- | llvm/test/FrontendC/asm-reg-var-local.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/FrontendC/asm-reg-var-local.c b/llvm/test/FrontendC/asm-reg-var-local.c index 3a93c11fb3d..22bd43c076d 100644 --- a/llvm/test/FrontendC/asm-reg-var-local.c +++ b/llvm/test/FrontendC/asm-reg-var-local.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc %s -m64 -S -o - | FileCheck %s +// RUN: %llvmgcc %s -S -o - | FileCheck %s // Exercise various use cases for local asm "register variables". // XFAIL: * // XTARGET: x86_64,i686,i386 |