1 //===-- MSP430MCAsmInfo.cpp - MSP430 asm properties -----------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file contains the declarations of the MSP430MCAsmInfo properties.
11 //===----------------------------------------------------------------------===//
13 #include "MSP430MCAsmInfo.h"
16 void MSP430MCAsmInfo::anchor() { }
18 MSP430MCAsmInfo::MSP430MCAsmInfo(const Triple
&TT
) {
19 // Since MSP430-GCC already generates 32-bit DWARF information, we will
20 // also store 16-bit pointers as 32-bit pointers in DWARF, because using
21 // 32-bit DWARF pointers is already a working and tested path for LLDB
24 CalleeSaveStackSlotSize
= 2;
27 SeparatorString
= "{";
29 AlignmentIsInBytes
= false;
30 UsesELFSectionDirectiveForBSS
= true;
32 SupportsDebugInformation
= true;
34 ExceptionsType
= ExceptionHandling::DwarfCFI
;