diff options
author | Ed Schouten <ed@FreeBSD.org> | 2009-06-02 17:52:33 +0000 |
---|---|---|
committer | Ed Schouten <ed@FreeBSD.org> | 2009-06-02 17:52:33 +0000 |
commit | 009b1c42aa6266385f2c37e227516b24077e6dd7 (patch) | |
tree | 64ba909838c23261cace781ece27d106134ea451 /lib/Target/MSP430/MSP430TargetAsmInfo.cpp |
Diffstat (limited to 'lib/Target/MSP430/MSP430TargetAsmInfo.cpp')
-rw-r--r-- | lib/Target/MSP430/MSP430TargetAsmInfo.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/Target/MSP430/MSP430TargetAsmInfo.cpp b/lib/Target/MSP430/MSP430TargetAsmInfo.cpp new file mode 100644 index 0000000000000..ab181de13f94d --- /dev/null +++ b/lib/Target/MSP430/MSP430TargetAsmInfo.cpp @@ -0,0 +1,22 @@ +//===-- MSP430TargetAsmInfo.cpp - MSP430 asm properties -------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file contains the declarations of the MSP430TargetAsmInfo properties. +// +//===----------------------------------------------------------------------===// + +#include "MSP430TargetAsmInfo.h" +#include "MSP430TargetMachine.h" + +using namespace llvm; + +MSP430TargetAsmInfo::MSP430TargetAsmInfo(const MSP430TargetMachine &TM) + : ELFTargetAsmInfo(TM) { + AlignmentIsInBytes = false; +} |