1 //===-- SystemZMCAsmInfo.cpp - SystemZ 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 #include "SystemZMCAsmInfo.h"
10 #include "llvm/MC/MCContext.h"
11 #include "llvm/MC/MCSectionELF.h"
15 SystemZMCAsmInfo::SystemZMCAsmInfo(const Triple
&TT
) {
17 CalleeSaveStackSlotSize
= 8;
18 IsLittleEndian
= false;
21 ZeroDirective
= "\t.space\t";
22 Data64bitsDirective
= "\t.quad\t";
23 UsesELFSectionDirectiveForBSS
= true;
24 SupportsDebugInformation
= true;
25 ExceptionsType
= ExceptionHandling::DwarfCFI
;
27 UseIntegratedAssembler
= true;