aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Target/Mips/MipsTargetObjectFile.h
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
commit15abef6df940fb76dd6fe4bdf2cc890609325701 (patch)
tree592332cf38aa4e45a88f50db4e93de6d696ab4a8 /llvm/lib/Target/Mips/MipsTargetObjectFile.h
parent49e453fe2443df104cdd235ab4426b0385707e6e (diff)
downloadllvm-15abef6df940fb76dd6fe4bdf2cc890609325701.zip
llvm-15abef6df940fb76dd6fe4bdf2cc890609325701.tar.gz
llvm-15abef6df940fb76dd6fe4bdf2cc890609325701.tar.bz2
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/Mips/MipsTargetObjectFile.h')
-rw-r--r--llvm/lib/Target/Mips/MipsTargetObjectFile.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/Target/Mips/MipsTargetObjectFile.h b/llvm/lib/Target/Mips/MipsTargetObjectFile.h
index c0e9140..9aaf794 100644
--- a/llvm/lib/Target/Mips/MipsTargetObjectFile.h
+++ b/llvm/lib/Target/Mips/MipsTargetObjectFile.h
@@ -31,9 +31,8 @@ namespace llvm {
const TargetMachine &TM) const;
const MCSection *SelectSectionForGlobal(const GlobalValue *GV,
- SectionKind Kind,
- Mangler *Mang,
- const TargetMachine &TM) const;
+ SectionKind Kind, Mangler *Mang,
+ TargetMachine &TM) const;
// TODO: Classify globals as mips wishes.
const MCSection *getReginfoSection() const { return ReginfoSection; }