• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===-- XCoreMCAsmInfo.cpp - XCore 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 #include "XCoreMCAsmInfo.h"
11 #include "llvm/ADT/StringRef.h"
12 using namespace llvm;
13 
anchor()14 void XCoreMCAsmInfo::anchor() { }
15 
XCoreMCAsmInfo(const Target & T,StringRef TT)16 XCoreMCAsmInfo::XCoreMCAsmInfo(const Target &T, StringRef TT) {
17   SupportsDebugInformation = true;
18   Data16bitsDirective = "\t.short\t";
19   Data32bitsDirective = "\t.long\t";
20   Data64bitsDirective = 0;
21   ZeroDirective = "\t.space\t";
22   CommentString = "#";
23 
24   PrivateGlobalPrefix = ".L";
25   AscizDirective = ".asciiz";
26   WeakDefDirective = "\t.weak\t";
27   WeakRefDirective = "\t.weak\t";
28 
29   // Debug
30   HasLEB128 = true;
31 }
32 
33