From 1ef9be28831ad2d0b16d9934dc65c98e17b429a7 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 2 Aug 2009 00:02:44 +0000 Subject: Make SectionKind::get() private. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77835 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/XCore/XCoreTargetObjectFile.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/Target/XCore/XCoreTargetObjectFile.cpp') diff --git a/lib/Target/XCore/XCoreTargetObjectFile.cpp b/lib/Target/XCore/XCoreTargetObjectFile.cpp index e4d83dd531..644b0249ce 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().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()); } -- cgit v1.2.3-18-g5258