LLVM API Documentation

MSP430MCAsmInfo.cpp
Go to the documentation of this file.
00001 //===-- MSP430MCAsmInfo.cpp - MSP430 asm properties -----------------------===//
00002 //
00003 //                     The LLVM Compiler Infrastructure
00004 //
00005 // This file is distributed under the University of Illinois Open Source
00006 // License. See LICENSE.TXT for details.
00007 //
00008 //===----------------------------------------------------------------------===//
00009 //
00010 // This file contains the declarations of the MSP430MCAsmInfo properties.
00011 //
00012 //===----------------------------------------------------------------------===//
00013 
00014 #include "MSP430MCAsmInfo.h"
00015 #include "llvm/ADT/StringRef.h"
00016 using namespace llvm;
00017 
00018 void MSP430MCAsmInfo::anchor() { }
00019 
00020 MSP430MCAsmInfo::MSP430MCAsmInfo(StringRef TT) {
00021   PointerSize = CalleeSaveStackSlotSize = 2;
00022 
00023   CommentString = ";";
00024 
00025   AlignmentIsInBytes = false;
00026   UsesELFSectionDirectiveForBSS = true;
00027 }