summaryrefslogtreecommitdiff
path: root/lib/Target/TargetLoweringObjectFile.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2014-01-23 06:47:25 +0000
committerEric Christopher <echristo@gmail.com>2014-01-23 06:47:25 +0000
commit80664e50cd9efab348cea6221e461bcee11386ea (patch)
tree2966905c58565322cbba4d51431bf28b8371a672 /lib/Target/TargetLoweringObjectFile.cpp
parentfa6e5cb5113d6cfb1f1bff3a1539859e33f9722a (diff)
downloadllvm-80664e50cd9efab348cea6221e461bcee11386ea.tar.gz
llvm-80664e50cd9efab348cea6221e461bcee11386ea.tar.bz2
llvm-80664e50cd9efab348cea6221e461bcee11386ea.tar.xz
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199871 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/TargetLoweringObjectFile.cpp')
-rw-r--r--lib/Target/TargetLoweringObjectFile.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/Target/TargetLoweringObjectFile.cpp b/lib/Target/TargetLoweringObjectFile.cpp
index b62577e080..8d73a3ab34 100644
--- a/lib/Target/TargetLoweringObjectFile.cpp
+++ b/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())