aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/XCore/XCoreTargetObjectFile.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-02 00:02:44 +0000
committerChris Lattner <sabre@nondot.org>2009-08-02 00:02:44 +0000
commit36dc04fced6da917f7b55f39f191e76cc54db8d2 (patch)
tree6fc238a615222c9631acb57c24993b0be18ad744 /lib/Target/XCore/XCoreTargetObjectFile.cpp
parenta945341d921f780e95b14475069c3a9c0d1c6575 (diff)
downloadexternal_llvm-36dc04fced6da917f7b55f39f191e76cc54db8d2.zip
external_llvm-36dc04fced6da917f7b55f39f191e76cc54db8d2.tar.gz
external_llvm-36dc04fced6da917f7b55f39f191e76cc54db8d2.tar.bz2
Make SectionKind::get() private.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77835 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/XCore/XCoreTargetObjectFile.cpp')
-rw-r--r--lib/Target/XCore/XCoreTargetObjectFile.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Target/XCore/XCoreTargetObjectFile.cpp b/lib/Target/XCore/XCoreTargetObjectFile.cpp
index e4d83dd..644b024 100644
--- a/lib/Target/XCore/XCoreTargetObjectFile.cpp
+++ b/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());
}