2009-08-22 22:48:53 +02:00
|
|
|
//===-- MSP430MCAsmInfo.cpp - MSP430 asm properties -----------------------===//
|
2009-05-03 14:57:15 +02: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 22:48:53 +02:00
|
|
|
// This file contains the declarations of the MSP430MCAsmInfo properties.
|
2009-05-03 14:57:15 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-08-22 22:48:53 +02:00
|
|
|
#include "MSP430MCAsmInfo.h"
|
2009-05-03 14:57:15 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
2009-08-22 22:48:53 +02:00
|
|
|
MSP430MCAsmInfo::MSP430MCAsmInfo(const Target &T, const StringRef &TT) {
|
2009-05-03 15:17:31 +02:00
|
|
|
AlignmentIsInBytes = false;
|
2009-09-18 18:57:42 +02:00
|
|
|
AllowNameToStartWithDigit = true;
|
2009-05-03 14:57:15 +02:00
|
|
|
}
|