diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-02 00:02:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-02 00:02:44 +0000 |
commit | 73d577c933ea9560c678ea9a9120f3e5d00aea58 (patch) | |
tree | 1763bdbffe58ff99f63f8c6d3e282e6adbc3ad53 /llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp | |
parent | f8d9710b6f85e1058c7a24e9904f1e9e928022c7 (diff) | |
download | bcm5719-llvm-73d577c933ea9560c678ea9a9120f3e5d00aea58.tar.gz bcm5719-llvm-73d577c933ea9560c678ea9a9120f3e5d00aea58.zip |
Make SectionKind::get() private.
llvm-svn: 77835
Diffstat (limited to 'llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp')
-rw-r--r-- | llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp b/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp index e4d83dd5318..644b0249ce7 100644 --- a/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp +++ b/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp @@ -17,11 +17,11 @@ void XCoreTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM){ TargetLoweringObjectFileELF::Initialize(Ctx, TM); TextSection = getOrCreateSection("\t.text", true, - SectionKind::get(SectionKind::Text)); + SectionKind::getText()); DataSection = getOrCreateSection("\t.dp.data", false, - SectionKind::get(SectionKind::DataRel)); + SectionKind::getDataRel()); BSSSection = getOrCreateSection("\t.dp.bss", false, - SectionKind::get(SectionKind::BSS)); + SectionKind::getBSS()); // TLS globals are lowered in the backend to arrays indexed by the current // thread id. After lowering they require no special handling by the linker @@ -32,8 +32,8 @@ void XCoreTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM){ if (TM.getSubtarget<XCoreSubtarget>().isXS1A()) // FIXME: Why is this writable ("datarel")??? ReadOnlySection = getOrCreateSection("\t.dp.rodata", false, - SectionKind::get(SectionKind::DataRel)); + SectionKind::getDataRel()); else ReadOnlySection = getOrCreateSection("\t.cp.rodata", false, - SectionKind::get(SectionKind::ReadOnly)); + SectionKind::getReadOnly()); } |