1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/lib/Target/MSP430/MSP430MCAsmInfo.cpp

27 lines
832 B
C++
Raw Normal View History

//===-- MSP430MCAsmInfo.cpp - MSP430 asm properties -----------------------===//
2009-05-03 14:57:15 +02:00
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file contains the declarations of the MSP430MCAsmInfo properties.
2009-05-03 14:57:15 +02:00
//
//===----------------------------------------------------------------------===//
#include "MSP430MCAsmInfo.h"
2009-05-03 14:57:15 +02:00
using namespace llvm;
MSP430MCAsmInfo::MSP430MCAsmInfo(const Target &T, StringRef TT) {
PrivateGlobalPrefix = ".L";
WeakRefDirective ="\t.weak\t";
PCSymbol=".";
CommentString = ";";
2009-05-03 15:17:31 +02:00
AlignmentIsInBytes = false;
AllowNameToStartWithDigit = true;
UsesELFSectionDirectiveForBSS = true;
2009-05-03 14:57:15 +02:00
}