diff options
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; +} |