1224133Sdim//===-- MSP430MCAsmInfo.cpp - MSP430 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// This file contains the declarations of the MSP430MCAsmInfo properties.
11224133Sdim//
12224133Sdim//===----------------------------------------------------------------------===//
13224133Sdim
14224133Sdim#include "MSP430MCAsmInfo.h"
15235633Sdim#include "llvm/ADT/StringRef.h"
16224133Sdimusing namespace llvm;
17224133Sdim
18235633Sdimvoid MSP430MCAsmInfo::anchor() { }
19235633Sdim
20263509SdimMSP430MCAsmInfo::MSP430MCAsmInfo(StringRef TT) {
21252723Sdim  PointerSize = CalleeSaveStackSlotSize = 2;
22224133Sdim
23224133Sdim  PrivateGlobalPrefix = ".L";
24224133Sdim  CommentString = ";";
25224133Sdim
26224133Sdim  AlignmentIsInBytes = false;
27224133Sdim  UsesELFSectionDirectiveForBSS = true;
28224133Sdim}
29