Path: blob/main/contrib/llvm-project/llvm/lib/MC/MCAsmInfoGOFF.cpp
35233 views
//===- MCAsmInfoGOFF.cpp - MCGOFFAsmInfo properties -----------------------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7///8/// \file9/// This file defines certain target specific asm properties for GOFF (z/OS)10/// based targets.11///12//===----------------------------------------------------------------------===//1314#include "llvm/MC/MCAsmInfoGOFF.h"1516using namespace llvm;1718void MCAsmInfoGOFF::anchor() {}1920MCAsmInfoGOFF::MCAsmInfoGOFF() {21Data64bitsDirective = "\t.quad\t";22HasDotTypeDotSizeDirective = false;23PrivateGlobalPrefix = "L#";24PrivateLabelPrefix = "L#";25ZeroDirective = "\t.space\t";26}272829