diff options
| author | David Majnemer <david.majnemer@gmail.com> | 2015-03-17 20:39:25 +0000 |
|---|---|---|
| committer | David Majnemer <david.majnemer@gmail.com> | 2015-03-17 20:39:25 +0000 |
| commit | 47e384298245b707d6dd986f5eb0646103cf06fd (patch) | |
| tree | 8f4cb4add0cdb6bb6752b9ceaa21ffaa7c6c5522 /llvm/lib/Target/TargetMachine.cpp | |
| parent | 5f0dd6162c941a32e89052f8848799df0553b7c7 (diff) | |
| download | bcm5719-llvm-47e384298245b707d6dd986f5eb0646103cf06fd.tar.gz bcm5719-llvm-47e384298245b707d6dd986f5eb0646103cf06fd.zip | |
COFF: Let globals with private linkage reside in their own section
Summary:
COFF COMDATs (for selection kinds other than 'select any') require at
least one non-section symbol in the symbol table.
Satisfy this by morally enhancing the linkage from private to internal.
Reviewers: rafael
Subscribers: llvm-commits
Differential Revision: http://reviews.llvm.org/D8374
llvm-svn: 232539
Diffstat (limited to 'llvm/lib/Target/TargetMachine.cpp')
| -rw-r--r-- | llvm/lib/Target/TargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/TargetMachine.cpp b/llvm/lib/Target/TargetMachine.cpp index bc2af5e9ad6..56e7e8b24bd 100644 --- a/llvm/lib/Target/TargetMachine.cpp +++ b/llvm/lib/Target/TargetMachine.cpp @@ -175,7 +175,7 @@ void TargetMachine::getNameWithPrefix(SmallVectorImpl<char> &Name, const TargetLoweringObjectFile *TLOF = getObjFileLowering(); const MCSection *TheSection = TLOF->SectionForGlobal(GV, GVKind, Mang, *this); bool CannotUsePrivateLabel = !canUsePrivateLabel(*AsmInfo, *TheSection); - Mang.getNameWithPrefix(Name, GV, CannotUsePrivateLabel); + TLOF->getNameWithPrefix(Name, GV, CannotUsePrivateLabel, Mang, *this); } MCSymbol *TargetMachine::getSymbol(const GlobalValue *GV, Mangler &Mang) const { |

