diff options
author | Eric Christopher <echristo@gmail.com> | 2014-01-23 06:47:25 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-01-23 06:47:25 +0000 |
commit | 15abef6df940fb76dd6fe4bdf2cc890609325701 (patch) | |
tree | 592332cf38aa4e45a88f50db4e93de6d696ab4a8 /llvm/lib/Target/TargetLoweringObjectFile.cpp | |
parent | 49e453fe2443df104cdd235ab4426b0385707e6e (diff) | |
download | bcm5719-llvm-15abef6df940fb76dd6fe4bdf2cc890609325701.tar.gz bcm5719-llvm-15abef6df940fb76dd6fe4bdf2cc890609325701.zip |
Add a variable to track whether or not we've used a unique section,
e.g. linkonce, to TargetMachine and set it when we've done so
for ELF targets currently. This involved making TargetMachine
non-const in a TLOF use and propagating that change around - I'm
open to other ideas.
This will be used in a future commit to handle emitting debug
information with ranges.
llvm-svn: 199871
Diffstat (limited to 'llvm/lib/Target/TargetLoweringObjectFile.cpp')
-rw-r--r-- | llvm/lib/Target/TargetLoweringObjectFile.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/llvm/lib/Target/TargetLoweringObjectFile.cpp b/llvm/lib/Target/TargetLoweringObjectFile.cpp index b62577e0801..8d73a3ab347 100644 --- a/llvm/lib/Target/TargetLoweringObjectFile.cpp +++ b/llvm/lib/Target/TargetLoweringObjectFile.cpp @@ -265,7 +265,7 @@ SectionKind TargetLoweringObjectFile::getKindForGlobal(const GlobalValue *GV, /// be passed external (or available externally) globals. const MCSection *TargetLoweringObjectFile:: SectionForGlobal(const GlobalValue *GV, SectionKind Kind, Mangler *Mang, - const TargetMachine &TM) const { + TargetMachine &TM) const { // Select section name. if (GV->hasSection()) return getExplicitSectionGlobal(GV, Kind, Mang, TM); @@ -277,11 +277,9 @@ SectionForGlobal(const GlobalValue *GV, SectionKind Kind, Mangler *Mang, // Lame default implementation. Calculate the section name for global. -const MCSection * -TargetLoweringObjectFile::SelectSectionForGlobal(const GlobalValue *GV, - SectionKind Kind, - Mangler *Mang, - const TargetMachine &TM) const{ +const MCSection *TargetLoweringObjectFile::SelectSectionForGlobal( + const GlobalValue *GV, SectionKind Kind, Mangler *Mang, + TargetMachine &TM) const { assert(!Kind.isThreadLocal() && "Doesn't support TLS"); if (Kind.isText()) |