2009-08-22 22:48:53 +02:00
|
|
|
//===-- XCoreMCAsmInfo.cpp - XCore asm properties -------------------------===//
|
2008-11-07 11:59:00 +01:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-08-22 22:48:53 +02:00
|
|
|
#include "XCoreMCAsmInfo.h"
|
2008-11-07 11:59:00 +01:00
|
|
|
using namespace llvm;
|
|
|
|
|
2010-07-15 00:38:02 +02:00
|
|
|
XCoreMCAsmInfo::XCoreMCAsmInfo(const Target &T, StringRef TT) {
|
2009-06-19 23:54:26 +02:00
|
|
|
SupportsDebugInformation = true;
|
2008-11-07 11:59:00 +01:00
|
|
|
Data16bitsDirective = "\t.short\t";
|
|
|
|
Data32bitsDirective = "\t.long\t";
|
|
|
|
Data64bitsDirective = 0;
|
|
|
|
ZeroDirective = "\t.space\t";
|
|
|
|
CommentString = "#";
|
2009-08-02 01:46:12 +02:00
|
|
|
|
2008-11-07 11:59:00 +01:00
|
|
|
PrivateGlobalPrefix = ".L";
|
|
|
|
AscizDirective = ".asciiz";
|
|
|
|
WeakDefDirective = "\t.weak\t";
|
|
|
|
WeakRefDirective = "\t.weak\t";
|
|
|
|
|
|
|
|
// Debug
|
|
|
|
HasLEB128 = true;
|
|
|
|
}
|
|
|
|
|