diff options
| author | Charles Davis <cdavis@mines.edu> | 2010-03-05 22:28:45 +0000 |
|---|---|---|
| committer | Charles Davis <cdavis@mines.edu> | 2010-03-05 22:28:45 +0000 |
| commit | 8545afe0b064d814bea7ecb442fb27c73ce427af (patch) | |
| tree | a78641fa31f13adde75bdd775655d2b048d7f26c /llvm/test/CodeGen/X86/global-sections.ll | |
| parent | 87abfc506f6f836fbd6aaf2d3f3f901e5cef3c61 (diff) | |
| download | bcm5719-llvm-8545afe0b064d814bea7ecb442fb27c73ce427af.tar.gz bcm5719-llvm-8545afe0b064d814bea7ecb442fb27c73ce427af.zip | |
Don't emit global symbols into the (__TEXT,__ustring) section on Darwin. This
is a workaround for <rdar://problem/7672401/> (which I filed).
This let's us build Wine on Darwin, and it gets the Qt build there a little bit
further (so Doug says).
llvm-svn: 97845
Diffstat (limited to 'llvm/test/CodeGen/X86/global-sections.ll')
| -rw-r--r-- | llvm/test/CodeGen/X86/global-sections.ll | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/global-sections.ll b/llvm/test/CodeGen/X86/global-sections.ll index 1a7b5777ae8..d79c56bc463 100644 --- a/llvm/test/CodeGen/X86/global-sections.ll +++ b/llvm/test/CodeGen/X86/global-sections.ll @@ -100,7 +100,7 @@ @G8 = constant [4 x i16] [ i16 1, i16 2, i16 3, i16 0 ] -; DARWIN: .section __TEXT,__ustring +; DARWIN: .section __TEXT,__const ; DARWIN: .globl _G8 ; DARWIN: _G8: @@ -110,7 +110,6 @@ @G9 = constant [4 x i32] [ i32 1, i32 2, i32 3, i32 0 ] -; DARWIN: .section __TEXT,__const ; DARWIN: .globl _G9 ; DARWIN: _G9: |

