Path: blob/main/contrib/llvm-project/llvm/lib/Target/ARC/MCTargetDesc/ARCMCAsmInfo.cpp
35294 views
//===- ARCMCAsmInfo.cpp - ARC asm properties --------------------*- C++ -*-===//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//===----------------------------------------------------------------------===//78#include "ARCMCAsmInfo.h"9using namespace llvm;1011void ARCMCAsmInfo::anchor() {}1213ARCMCAsmInfo::ARCMCAsmInfo(const Triple &TT) {14SupportsDebugInformation = true;15Data16bitsDirective = "\t.short\t";16Data32bitsDirective = "\t.word\t";17Data64bitsDirective = nullptr;18ZeroDirective = "\t.space\t";19CommentString = ";";2021UsesELFSectionDirectiveForBSS = true;22AllowAtInName = true;23HiddenVisibilityAttr = MCSA_Invalid;24HiddenDeclarationVisibilityAttr = MCSA_Invalid;25ProtectedVisibilityAttr = MCSA_Invalid;2627// Debug28ExceptionsType = ExceptionHandling::DwarfCFI;29DwarfRegNumForCFI = true;30}313233