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 | 6f09fcf5dae14d68ec9f8731b8c91c04868532e2 (patch) | |
tree | 3bfd65ad67e16210d9e90992ad156d3b787715e6 /test/CodeGen/ARM/hidden-vis-3.ll | |
parent | a64556ffda503a416b2594104f8f82345734b4d9 (diff) | |
download | llvm-6f09fcf5dae14d68ec9f8731b8c91c04868532e2.tar.gz |
ARM Darwin default relocation model is PIC.
This matches clang, so default options in llc and friends are now closer to
clang's defaults.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140863 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/hidden-vis-3.ll')
-rw-r--r-- | test/CodeGen/ARM/hidden-vis-3.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/ARM/hidden-vis-3.ll b/test/CodeGen/ARM/hidden-vis-3.ll index fc8b2febc320..3bc3312e9c4e 100644 --- a/test/CodeGen/ARM/hidden-vis-3.ll +++ b/test/CodeGen/ARM/hidden-vis-3.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -mtriple=arm-apple-darwin9 | FileCheck %s +; RUN: llc < %s -relocation-model=dynamic-no-pic -mtriple=arm-apple-darwin9 | FileCheck %s @x = external hidden global i32 ; <i32*> [#uses=1] @y = extern_weak hidden global i32 ; <i32*> [#uses=1] |