From 5c0d2bd46e1eacf3c40561f4632b40eea0c679ff Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Wed, 9 Jul 2008 20:01:42 +0000 Subject: [PATCH] Distinguish .const and .const_data on Darwin, when needed. This is somehow crazy :) llvm-svn: 53350 --- llvm/lib/Target/X86/X86TargetAsmInfo.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/llvm/lib/Target/X86/X86TargetAsmInfo.cpp b/llvm/lib/Target/X86/X86TargetAsmInfo.cpp index 965e8d6b77a9..e3bc507bb84c 100644 --- a/llvm/lib/Target/X86/X86TargetAsmInfo.cpp +++ b/llvm/lib/Target/X86/X86TargetAsmInfo.cpp @@ -245,6 +245,7 @@ const Section* X86DarwinTargetAsmInfo::SelectSectionForGlobal(const GlobalValue *GV) const { SectionKind::Kind Kind = SectionKindForGlobal(GV); bool isWeak = GV->isWeakForLinker(); + bool isNonStatic = (X86TM->getRelocationModel() != Reloc::Static); switch (Kind) { case SectionKind::Text: @@ -261,7 +262,8 @@ X86DarwinTargetAsmInfo::SelectSectionForGlobal(const GlobalValue *GV) const { else return (isWeak ? DataCoalSection : getDataSection_()); case SectionKind::ROData: - return (isWeak ? ConstDataCoalSection : getReadOnlySection_()); + return (isWeak ? ConstDataCoalSection : + (isNonStatic ? ConstDataSection : getReadOnlySection_())); case SectionKind::RODataMergeStr: return (isWeak ? ConstDataCoalSection : -- GitLab