diff options
author | Chris Lattner <sabre@nondot.org> | 2010-08-30 18:12:35 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-08-30 18:12:35 +0000 |
commit | 34bfab0ad56192f05ecae578c41f796be3763cba (patch) | |
tree | 0bc60516c3468d7639a922fe1bc7deb10daa2a0e /llvm/test | |
parent | 59e8fc1c7404de213591bc416bb7800539bfc575 (diff) | |
download | bcm5719-llvm-34bfab0ad56192f05ecae578c41f796be3763cba.tar.gz bcm5719-llvm-34bfab0ad56192f05ecae578c41f796be3763cba.zip |
two changes:
1) nuke ConstDataCoalSection, which is dead.
2) revise my previous patch for rdar://8018335,
which was completely wrong. Specifically, it doesn't
make sense to mark __TEXT,__const_coal as PURE_INSTRUCTIONS,
because it is for readonly data. templates (it turns out)
go to const_coal_nt. The real fix for rdar://8018335 was
to give ConstTextCoalSection a section kind of ReadOnly
instead of Text.
llvm-svn: 112496
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/CodeGen/X86/global-sections.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/global-sections.ll b/llvm/test/CodeGen/X86/global-sections.ll index 2d8f429eff6..6d211913b01 100644 --- a/llvm/test/CodeGen/X86/global-sections.ll +++ b/llvm/test/CodeGen/X86/global-sections.ll @@ -20,7 +20,7 @@ ; TODO: linux drops this into .rodata, we drop it into ".gnu.linkonce.r.G2" -; DARWIN: .section __TEXT,__const_coal,coalesced,pure_instructions +; DARWIN: .section __TEXT,__const_coal,coalesced ; DARWIN: _G2: ; DARWIN: .long 42 @@ -85,7 +85,7 @@ ; LINUX: .byte 1 ; LINUX: .size G6, 1 -; DARWIN: .section __TEXT,__const_coal,coalesced,pure_instructions +; DARWIN: .section __TEXT,__const_coal,coalesced ; DARWIN: .globl _G6 ; DARWIN: .weak_definition _G6 ; DARWIN:_G6: |