[InstCombine] Signed saturation patterns
[llvm-core.git] / lib / Target / MSP430 / MCTargetDesc / MSP430MCAsmInfo.cpp
blobdb5a49dd22a7250acf76eeade694a3f732ec5b3a
1 //===-- MSP430MCAsmInfo.cpp - MSP430 asm properties -----------------------===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file contains the declarations of the MSP430MCAsmInfo properties.
11 //===----------------------------------------------------------------------===//
13 #include "MSP430MCAsmInfo.h"
14 using namespace llvm;
16 void MSP430MCAsmInfo::anchor() { }
18 MSP430MCAsmInfo::MSP430MCAsmInfo(const Triple &TT) {
19 CodePointerSize = CalleeSaveStackSlotSize = 2;
21 CommentString = ";";
22 SeparatorString = "{";
24 AlignmentIsInBytes = false;
25 UsesELFSectionDirectiveForBSS = true;
26 UseIntegratedAssembler = true;