Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / lib / MC / MCAsmInfoGOFF.cpp
blob3c81a466e82e7983e9cf34b6a8db1ff0037d54e6
1 //===- MCAsmInfoGOFF.cpp - MCGOFFAsmInfo 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 /// \file
10 /// This file defines certain target specific asm properties for GOFF (z/OS)
11 /// based targets.
12 ///
13 //===----------------------------------------------------------------------===//
15 #include "llvm/MC/MCAsmInfoGOFF.h"
17 using namespace llvm;
19 void MCAsmInfoGOFF::anchor() {}
21 MCAsmInfoGOFF::MCAsmInfoGOFF() {
22 Data64bitsDirective = "\t.quad\t";
23 HasDotTypeDotSizeDirective = false;
24 PrivateGlobalPrefix = "L#";
25 PrivateLabelPrefix = "L#";
26 ZeroDirective = "\t.space\t";