diff options
Diffstat (limited to 'contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp')
-rw-r--r-- | contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp b/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp new file mode 100644 index 000000000000..acf2ab869d59 --- /dev/null +++ b/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp @@ -0,0 +1,28 @@ +//===-- MSP430MCAsmInfo.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 MSP430MCAsmInfo properties. +// +//===----------------------------------------------------------------------===// + +#include "MSP430MCAsmInfo.h" +#include "llvm/ADT/StringRef.h" +using namespace llvm; + +void MSP430MCAsmInfo::anchor() { } + +MSP430MCAsmInfo::MSP430MCAsmInfo(StringRef TT) { + PointerSize = CalleeSaveStackSlotSize = 2; + + PrivateGlobalPrefix = ".L"; + CommentString = ";"; + + AlignmentIsInBytes = false; + UsesELFSectionDirectiveForBSS = true; +} |