Fixing @llvm.memcpy not honoring volatile.
[llvm-core.git] / lib / Target / SystemZ / MCTargetDesc / SystemZMCAsmInfo.cpp
blobd6cdacfcab92401177ce04244e3ed8d620104558
1 //===-- SystemZMCAsmInfo.cpp - SystemZ 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 "SystemZMCAsmInfo.h"
10 #include "llvm/MC/MCContext.h"
11 #include "llvm/MC/MCSectionELF.h"
13 using namespace llvm;
15 SystemZMCAsmInfo::SystemZMCAsmInfo(const Triple &TT) {
16 CodePointerSize = 8;
17 CalleeSaveStackSlotSize = 8;
18 IsLittleEndian = false;
20 CommentString = "#";
21 ZeroDirective = "\t.space\t";
22 Data64bitsDirective = "\t.quad\t";
23 UsesELFSectionDirectiveForBSS = true;
24 SupportsDebugInformation = true;
25 ExceptionsType = ExceptionHandling::DwarfCFI;
27 UseIntegratedAssembler = true;