diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-08-08 22:41:53 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-08-08 22:41:53 +0000 |
| commit | 1cb9396f4f3d2cdf6bf25b12eec6867c65645e55 (patch) | |
| tree | 181ae850501f5204ecdb055cc0368d26a30b0f53 /llvm/lib/Target/ARM/ARMTargetObjectFile.h | |
| parent | 089b7de20dac7361b80f75e82961e053bdc5d7ff (diff) | |
| download | bcm5719-llvm-1cb9396f4f3d2cdf6bf25b12eec6867c65645e55.tar.gz bcm5719-llvm-1cb9396f4f3d2cdf6bf25b12eec6867c65645e55.zip | |
1. Make MCSection an abstract class.
2. Move section switch printing to MCSection virtual method which takes a
TAI. This eliminates textual formatting stuff from TLOF.
3. Eliminate SwitchToSectionDirective, getSectionFlagsAsString, and
TLOFELF::AtIsCommentChar.
llvm-svn: 78510
Diffstat (limited to 'llvm/lib/Target/ARM/ARMTargetObjectFile.h')
| -rw-r--r-- | llvm/lib/Target/ARM/ARMTargetObjectFile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMTargetObjectFile.h b/llvm/lib/Target/ARM/ARMTargetObjectFile.h index 55f13b170a4..9a9f5bb28d3 100644 --- a/llvm/lib/Target/ARM/ARMTargetObjectFile.h +++ b/llvm/lib/Target/ARM/ARMTargetObjectFile.h @@ -16,7 +16,7 @@ namespace llvm { class ARMElfTargetObjectFile : public TargetLoweringObjectFileELF { public: - ARMElfTargetObjectFile() : TargetLoweringObjectFileELF(true) {} + ARMElfTargetObjectFile() : TargetLoweringObjectFileELF() {} void Initialize(MCContext &Ctx, const TargetMachine &TM) { TargetLoweringObjectFileELF::Initialize(Ctx, TM); |

