2009-08-22 20:48:53 +00:00
|
|
|
//===-- MSP430MCAsmInfo.cpp - MSP430 asm properties -----------------------===//
|
2009-05-03 12:57:15 +00: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 20:48:53 +00:00
|
|
|
// This file contains the declarations of the MSP430MCAsmInfo properties.
|
2009-05-03 12:57:15 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-08-22 20:48:53 +00:00
|
|
|
#include "MSP430MCAsmInfo.h"
|
2009-05-03 12:57:15 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2010-07-14 22:38:02 +00:00
|
|
|
MSP430MCAsmInfo::MSP430MCAsmInfo(const Target &T, StringRef TT) {
|
2009-11-07 17:12:58 +00:00
|
|
|
PrivateGlobalPrefix = ".L";
|
|
|
|
WeakRefDirective ="\t.weak\t";
|
|
|
|
PCSymbol=".";
|
2009-11-22 01:12:49 +00:00
|
|
|
CommentString = ";";
|
2009-11-07 17:12:58 +00:00
|
|
|
|
2009-05-03 13:17:31 +00:00
|
|
|
AlignmentIsInBytes = false;
|
2009-09-18 16:57:42 +00:00
|
|
|
AllowNameToStartWithDigit = true;
|
2009-11-07 17:12:58 +00:00
|
|
|
UsesELFSectionDirectiveForBSS = true;
|
2009-05-03 12:57:15 +00:00
|
|
|
}
|