diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-09-30 17:41:35 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-09-30 17:41:35 +0000 |
commit | 4e0dbee62bf9cffcd98703f4f30cdb4985475918 (patch) | |
tree | 62d9be6e9d7c40f044c0542f002a657e9bc4069a /llvm/test/CodeGen/ARM/tail-opts.ll | |
parent | 9727af7657b212e874c856017be437d234d42a51 (diff) | |
download | bcm5719-llvm-4e0dbee62bf9cffcd98703f4f30cdb4985475918.tar.gz bcm5719-llvm-4e0dbee62bf9cffcd98703f4f30cdb4985475918.zip |
ARM Darwin default relocation model is PIC.
This matches clang, so default options in llc and friends are now closer to
clang's defaults.
llvm-svn: 140863
Diffstat (limited to 'llvm/test/CodeGen/ARM/tail-opts.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/tail-opts.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/ARM/tail-opts.ll b/llvm/test/CodeGen/ARM/tail-opts.ll index 5b3dce386bb..3dc77e2a808 100644 --- a/llvm/test/CodeGen/ARM/tail-opts.ll +++ b/llvm/test/CodeGen/ARM/tail-opts.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -mtriple=arm-apple-darwin -mcpu=cortex-a8 -asm-verbose=false | FileCheck %s +; RUN: llc < %s -mtriple=arm-apple-darwin -relocation-model=dynamic-no-pic -mcpu=cortex-a8 -asm-verbose=false | FileCheck %s declare void @bar(i32) declare void @car(i32) |