remove a dead bool.
[llvm/avr.git] / lib / Target / Sparc / SparcMCAsmInfo.cpp
blobb67537c17881c36120c91aad250adc51f83223f5
1 //===-- SparcMCAsmInfo.cpp - Sparc asm properties -------------------------===//
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 SparcMCAsmInfo properties.
12 //===----------------------------------------------------------------------===//
14 #include "SparcMCAsmInfo.h"
15 #include "llvm/ADT/SmallVector.h"
16 using namespace llvm;
18 SparcELFMCAsmInfo::SparcELFMCAsmInfo(const Target &T, const StringRef &TT) {
19 Data16bitsDirective = "\t.half\t";
20 Data32bitsDirective = "\t.word\t";
21 Data64bitsDirective = 0; // .xword is only supported by V9.
22 ZeroDirective = "\t.skip\t";
23 CommentString = "!";
24 COMMDirectiveTakesAlignment = true;
25 HasLEB128 = true;
26 AbsoluteDebugSectionOffsets = true;
27 SupportsDebugInformation = true;
29 SunStyleELFSectionSwitchSyntax = true;
30 UsesELFSectionDirectiveForBSS = true;
32 WeakRefDirective = "\t.weak\t";
33 SetDirective = "\t.set\t";
35 PrivateGlobalPrefix = ".L";