1 //===-- SparcMCAsmInfo.cpp - Sparc asm properties -------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file contains the declarations of the SparcMCAsmInfo properties.
12 //===----------------------------------------------------------------------===//
14 #include "SparcMCAsmInfo.h"
15 #include "llvm/ADT/Triple.h"
19 void SparcELFMCAsmInfo::anchor() { }
21 SparcELFMCAsmInfo::SparcELFMCAsmInfo(const Target &T, StringRef TT) {
22 IsLittleEndian = false;
24 if (TheTriple.getArch() == Triple::sparcv9)
27 Data16bitsDirective = "\t.half\t";
28 Data32bitsDirective = "\t.word\t";
29 Data64bitsDirective = 0; // .xword is only supported by V9.
30 ZeroDirective = "\t.skip\t";
33 SupportsDebugInformation = true;
35 SunStyleELFSectionSwitchSyntax = true;
36 UsesELFSectionDirectiveForBSS = true;
38 WeakRefDirective = "\t.weak\t";
40 PrivateGlobalPrefix = ".L";