Add newline at end of file to remove gcc warning.
[oota-llvm.git] / lib / Target / XCore / XCoreTargetObjectFile.cpp
1 //===-- XCoreTargetObjectFile.cpp - XCore object files --------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #include "XCoreTargetObjectFile.h"
11 #include "XCoreSubtarget.h"
12 #include "llvm/Target/TargetMachine.h"
13 using namespace llvm;
14
15
16 void XCoreTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM){
17   TargetLoweringObjectFileELF::Initialize(Ctx, TM);
18
19   TextSection = getOrCreateSection("\t.text", true, SectionKind::Text);
20   DataSection = getOrCreateSection("\t.dp.data", false, SectionKind::DataRel);
21   BSSSection_ = getOrCreateSection("\t.dp.bss", false, SectionKind::BSS);
22   
23   // TLS globals are lowered in the backend to arrays indexed by the current
24   // thread id. After lowering they require no special handling by the linker
25   // and can be placed in the standard data / bss sections.
26   TLSDataSection = DataSection;
27   TLSBSSSection = BSSSection_;
28   
29   if (TM.getSubtarget<XCoreSubtarget>().isXS1A())
30     // FIXME: Why is this writable ("datarel")???
31     ReadOnlySection = getOrCreateSection("\t.dp.rodata", false,
32                                          SectionKind::DataRel);
33   else
34     ReadOnlySection = getOrCreateSection("\t.cp.rodata", false,
35                                          SectionKind::ReadOnly);
36 }