diff options
author | Dan Gohman <gohman@apple.com> | 2008-11-19 16:02:14 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-11-19 16:02:14 +0000 |
commit | dbef6b97b10559b6524b4568da616e07a9844836 (patch) | |
tree | 67abe0f5a9970af0ff8e0cadb4bf8b99935775f3 /test | |
parent | f65c8f0aaa6d726868c7de7ad1282c6c8ac82109 (diff) | |
download | external_llvm-dbef6b97b10559b6524b4568da616e07a9844836.zip external_llvm-dbef6b97b10559b6524b4568da616e07a9844836.tar.gz external_llvm-dbef6b97b10559b6524b4568da616e07a9844836.tar.bz2 |
Use %llvmgcc -xassembler instead of invoking as directly. This avoids
problems for example when LLVM is built with --with-extra-options=-m64
and as defaults to x86-32 mode.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59640 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/Generic/2008-07-29-EHLabel.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/Generic/2008-07-29-EHLabel.ll b/test/CodeGen/Generic/2008-07-29-EHLabel.ll index 69a4e13..abf9456 100644 --- a/test/CodeGen/Generic/2008-07-29-EHLabel.ll +++ b/test/CodeGen/Generic/2008-07-29-EHLabel.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -o - | as -o /dev/null +; RUN: llvm-as < %s | llc -o - | %llvmgcc -xassembler -c -o /dev/null - ; PR2609 %struct..0._11 = type { i32 } %struct..1__pthread_mutex_s = type { i32, i32, i32, i32, i32, %struct..0._11 } |