XCoreMCAsmInfo.cpp revision 224133
1224133Sdim//===-- XCoreMCAsmInfo.cpp - XCore asm properties -------------------------===//
2224133Sdim//
3224133Sdim//                     The LLVM Compiler Infrastructure
4224133Sdim//
5224133Sdim// This file is distributed under the University of Illinois Open Source
6224133Sdim// License. See LICENSE.TXT for details.
7224133Sdim//
8224133Sdim//===----------------------------------------------------------------------===//
9224133Sdim
10224133Sdim#include "XCoreMCAsmInfo.h"
11224133Sdimusing namespace llvm;
12224133Sdim
13224133SdimXCoreMCAsmInfo::XCoreMCAsmInfo(const Target &T, StringRef TT) {
14224133Sdim  SupportsDebugInformation = true;
15224133Sdim  Data16bitsDirective = "\t.short\t";
16224133Sdim  Data32bitsDirective = "\t.long\t";
17224133Sdim  Data64bitsDirective = 0;
18224133Sdim  ZeroDirective = "\t.space\t";
19224133Sdim  CommentString = "#";
20224133Sdim
21224133Sdim  PrivateGlobalPrefix = ".L";
22224133Sdim  AscizDirective = ".asciiz";
23224133Sdim  WeakDefDirective = "\t.weak\t";
24224133Sdim  WeakRefDirective = "\t.weak\t";
25224133Sdim
26224133Sdim  // Debug
27224133Sdim  HasLEB128 = true;
28224133Sdim}
29224133Sdim
30