Get rid of now unused {Four,Eight,Sixteen}ByteConstantSection
[oota-llvm.git] / lib / Target / CellSPU / SPUTargetAsmInfo.cpp
1 //===-- SPUTargetAsmInfo.cpp - Cell SPU asm properties ----------*- C++ -*-===//
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 // This file contains the declarations of the SPUTargetAsmInfo properties.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "SPUTargetAsmInfo.h"
15 #include "SPUTargetMachine.h"
16 #include "llvm/Function.h"
17 using namespace llvm;
18
19 SPUTargetAsmInfo::SPUTargetAsmInfo(const SPUTargetMachine &TM) {
20   PCSymbol = ".";
21   CommentString = "#";
22   GlobalPrefix = "";
23   PrivateGlobalPrefix = ".L";
24   ZeroDirective = "\t.space\t";
25   SetDirective = "\t.set";
26   Data64bitsDirective = "\t.quad\t";  
27   AlignmentIsInBytes = false;
28   SwitchToSectionDirective = ".section\t";
29   ConstantPoolSection = "\t.const\t";
30   JumpTableDataSection = ".const";
31   CStringSection = "\t.cstring";
32   StaticCtorsSection = ".mod_init_func";
33   StaticDtorsSection = ".mod_term_func";
34   InlineAsmStart = "# InlineAsm Start";
35   InlineAsmEnd = "# InlineAsm End";
36   
37   NeedsSet = true;
38   /* FIXME: Need actual assembler syntax for DWARF info: */
39   DwarfAbbrevSection = ".section __DWARF,__debug_abbrev,regular,debug";
40   DwarfInfoSection = ".section __DWARF,__debug_info,regular,debug";
41   DwarfLineSection = ".section __DWARF,__debug_line,regular,debug";
42   DwarfFrameSection = ".section __DWARF,__debug_frame,regular,debug";
43   DwarfPubNamesSection = ".section __DWARF,__debug_pubnames,regular,debug";
44   DwarfPubTypesSection = ".section __DWARF,__debug_pubtypes,regular,debug";
45   DwarfStrSection = ".section __DWARF,__debug_str,regular,debug";
46   DwarfLocSection = ".section __DWARF,__debug_loc,regular,debug";
47   DwarfARangesSection = ".section __DWARF,__debug_aranges,regular,debug";
48   DwarfRangesSection = ".section __DWARF,__debug_ranges,regular,debug";
49   DwarfMacInfoSection = ".section __DWARF,__debug_macinfo,regular,debug";
50 }