diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-01-31 23:10:26 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-01-31 23:10:26 +0000 |
commit | 972e71ab5ab9fbbd72d716fa2d78b83f83e42867 (patch) | |
tree | d9990a41e2c235147d8ab257d9cad7857d66c541 /llvm/lib/Target/Mips/MipsTargetObjectFile.h | |
parent | 9661bcf2e1121b3b6786df39c0e348d882e54351 (diff) | |
download | llvm-972e71ab5ab9fbbd72d716fa2d78b83f83e42867.zip llvm-972e71ab5ab9fbbd72d716fa2d78b83f83e42867.tar.gz llvm-972e71ab5ab9fbbd72d716fa2d78b83f83e42867.tar.bz2 |
Remove another hasRawTextSupport.
To remove this one simply move the end of file logic from the asm printer to
the target mc streamer.
This removes the last call to hasRawTextSupport from lib/Target.
llvm-svn: 200590
Diffstat (limited to 'llvm/lib/Target/Mips/MipsTargetObjectFile.h')
-rw-r--r-- | llvm/lib/Target/Mips/MipsTargetObjectFile.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/Target/Mips/MipsTargetObjectFile.h b/llvm/lib/Target/Mips/MipsTargetObjectFile.h index c0e9140..658a49a 100644 --- a/llvm/lib/Target/Mips/MipsTargetObjectFile.h +++ b/llvm/lib/Target/Mips/MipsTargetObjectFile.h @@ -17,7 +17,6 @@ namespace llvm { class MipsTargetObjectFile : public TargetLoweringObjectFileELF { const MCSection *SmallDataSection; const MCSection *SmallBSSSection; - const MCSection *ReginfoSection; public: void Initialize(MCContext &Ctx, const TargetMachine &TM); @@ -34,9 +33,6 @@ namespace llvm { SectionKind Kind, Mangler *Mang, const TargetMachine &TM) const; - - // TODO: Classify globals as mips wishes. - const MCSection *getReginfoSection() const { return ReginfoSection; } }; } // end namespace llvm |