diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-06-03 21:13:54 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-06-03 21:13:54 +0000 |
commit | 424f8f339a0c70f58ce90254c0e04f637ab4da40 (patch) | |
tree | 3c673ac8ebfe76f2f0eb17dbef1e7ae5168693fd /test/CodeGen/X86/remat-constant.ll | |
parent | 006a03482880a5b614dfbb8601e0ae92593a595c (diff) |
For Darwin / x86_64, override -relocation-model=static to pic if the output is assembly since Darwin assembler does not really support -static codeine.
I view this as a temporary workaround until the assembler / linker changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72806 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/remat-constant.ll')
-rw-r--r-- | test/CodeGen/X86/remat-constant.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/remat-constant.ll b/test/CodeGen/X86/remat-constant.ll index d9ef6fe76d..4c983b0148 100644 --- a/test/CodeGen/X86/remat-constant.ll +++ b/test/CodeGen/X86/remat-constant.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=x86-64 -relocation-model=static -aggressive-remat | grep xmm | count 2 +; RUN: llvm-as < %s | llc -mtriple=x86_64-linux -relocation-model=static -aggressive-remat | grep xmm | count 2 declare void @bar() nounwind |