blob: 2309a5f63e664e9fded1f643c47998344342df1e [file] [log] [blame]
Chris Lattner621c44d2009-08-22 20:48:53 +00001//===-- MSP430MCAsmInfo.cpp - MSP430 asm properties -----------------------===//
Anton Korobeynikov37171572009-05-03 12:57:15 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Chris Lattner621c44d2009-08-22 20:48:53 +000010// This file contains the declarations of the MSP430MCAsmInfo properties.
Anton Korobeynikov37171572009-05-03 12:57:15 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner621c44d2009-08-22 20:48:53 +000014#include "MSP430MCAsmInfo.h"
Anton Korobeynikov37171572009-05-03 12:57:15 +000015using namespace llvm;
16
Chris Lattner621c44d2009-08-22 20:48:53 +000017MSP430MCAsmInfo::MSP430MCAsmInfo(const Target &T, const StringRef &TT) {
Anton Korobeynikova5a157b2009-05-03 13:17:31 +000018 AlignmentIsInBytes = false;
Anton Korobeynikov37171572009-05-03 12:57:15 +000019}