[InstCombine] Signed saturation patterns
[llvm-core.git] / lib / Target / XCore / MCTargetDesc / XCoreMCAsmInfo.cpp
blobae19e2a78eec91cd2cd444889c46baceffaf67fd
1 //===-- XCoreMCAsmInfo.cpp - XCore 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 //===----------------------------------------------------------------------===//
9 #include "XCoreMCAsmInfo.h"
10 using namespace llvm;
12 void XCoreMCAsmInfo::anchor() { }
14 XCoreMCAsmInfo::XCoreMCAsmInfo(const Triple &TT) {
15 SupportsDebugInformation = true;
16 Data16bitsDirective = "\t.short\t";
17 Data32bitsDirective = "\t.long\t";
18 Data64bitsDirective = nullptr;
19 ZeroDirective = "\t.space\t";
20 CommentString = "#";
22 AscizDirective = ".asciiz";
24 HiddenVisibilityAttr = MCSA_Invalid;
25 HiddenDeclarationVisibilityAttr = MCSA_Invalid;
26 ProtectedVisibilityAttr = MCSA_Invalid;
28 // Debug
29 ExceptionsType = ExceptionHandling::DwarfCFI;
30 DwarfRegNumForCFI = true;