[weak vtables] Remove a bunch of weak vtables
[oota-llvm.git] / lib / Target / Hexagon / MCTargetDesc / HexagonMCAsmInfo.cpp
1 //===-- HexagonMCAsmInfo.cpp - Hexagon 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 HexagonMCAsmInfo properties.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "HexagonMCAsmInfo.h"
15
16 using namespace llvm;
17
18 // pin vtable to this file
19 void HexagonMCAsmInfo::anchor() {}
20
21 HexagonMCAsmInfo::HexagonMCAsmInfo(StringRef TT) {
22   Data16bitsDirective = "\t.half\t";
23   Data32bitsDirective = "\t.word\t";
24   Data64bitsDirective = 0;  // .xword is only supported by V9.
25   ZeroDirective = "\t.skip\t";
26   CommentString = "//";
27   HasLEB128 = true;
28
29   PrivateGlobalPrefix = ".L";
30   LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
31   InlineAsmStart = "# InlineAsm Start";
32   InlineAsmEnd = "# InlineAsm End";
33   ZeroDirective = "\t.space\t";
34   AscizDirective = "\t.string\t";
35
36   SupportsDebugInformation = true;
37   UsesELFSectionDirectiveForBSS  = true;
38   ExceptionsType = ExceptionHandling::DwarfCFI;
39 }