2009-08-22 20:48:53 +00:00
|
|
|
//===-- MSP430MCAsmInfo.cpp - MSP430 asm properties -----------------------===//
|
2009-05-03 12:57:15 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-08-22 20:48:53 +00:00
|
|
|
// This file contains the declarations of the MSP430MCAsmInfo properties.
|
2009-05-03 12:57:15 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-08-22 20:48:53 +00:00
|
|
|
#include "MSP430MCAsmInfo.h"
|
2009-05-03 12:57:15 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2009-08-22 20:48:53 +00:00
|
|
|
MSP430MCAsmInfo::MSP430MCAsmInfo(const Target &T, const StringRef &TT) {
|
2009-05-03 13:17:31 +00:00
|
|
|
AlignmentIsInBytes = false;
|
2009-09-18 16:57:42 +00:00
|
|
|
AllowNameToStartWithDigit = true;
|
2009-05-03 12:57:15 +00:00
|
|
|
}
|