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"
15224133Sdimusing namespace llvm;
16224133Sdim
17234353Sdimvoid MSP430MCAsmInfo::anchor() { }
18234353Sdim
19288943SdimMSP430MCAsmInfo::MSP430MCAsmInfo(const Triple &TT) {
20249423Sdim  PointerSize = CalleeSaveStackSlotSize = 2;
21224133Sdim
22224133Sdim  CommentString = ";";
23224133Sdim
24224133Sdim  AlignmentIsInBytes = false;
25224133Sdim  UsesELFSectionDirectiveForBSS = true;
26224133Sdim}
27