blob: 92adc381699211eea8fc3a3b2c2247e384dc0e4a [file] [log] [blame]
Chris Lattner7b26fce2009-08-22 20:48:53 +00001//===-- MSP430MCAsmInfo.cpp - MSP430 asm properties -----------------------===//
Anton Korobeynikov10138002009-05-03 12:57:15 +00002//
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//
Chris Lattner7b26fce2009-08-22 20:48:53 +000010// This file contains the declarations of the MSP430MCAsmInfo properties.
Anton Korobeynikov10138002009-05-03 12:57:15 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner7b26fce2009-08-22 20:48:53 +000014#include "MSP430MCAsmInfo.h"
Anton Korobeynikov10138002009-05-03 12:57:15 +000015using namespace llvm;
16
Chris Lattner003b5c82010-01-19 22:42:28 +000017MSP430MCAsmInfo::MSP430MCAsmInfo(const Target &T, const StringRef &TT) :
18 MCAsmInfo(true) {
Anton Korobeynikov1bbc8d22009-11-07 17:12:58 +000019 PrivateGlobalPrefix = ".L";
20 WeakRefDirective ="\t.weak\t";
21 SetDirective = "\t.set\t";
22 PCSymbol=".";
Anton Korobeynikovd099b572009-11-22 01:12:49 +000023 CommentString = ";";
Anton Korobeynikov1bbc8d22009-11-07 17:12:58 +000024
Anton Korobeynikov3c48ea72009-05-03 13:17:31 +000025 AlignmentIsInBytes = false;
Anton Korobeynikov592638a2009-09-18 16:57:42 +000026 AllowNameToStartWithDigit = true;
Anton Korobeynikov1bbc8d22009-11-07 17:12:58 +000027 UsesELFSectionDirectiveForBSS = true;
Anton Korobeynikov10138002009-05-03 12:57:15 +000028}