Path: blob/main/contrib/llvm-project/llvm/lib/Target/CSKY/MCTargetDesc/CSKYMCAsmInfo.cpp
35294 views
//===-- CSKYMCAsmInfo.cpp - CSKY Asm 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// This file contains the declarations of the CSKYMCAsmInfo properties.9//10//===----------------------------------------------------------------------===//1112#include "CSKYMCAsmInfo.h"13#include "llvm/BinaryFormat/Dwarf.h"14#include "llvm/MC/MCStreamer.h"1516using namespace llvm;1718void CSKYMCAsmInfo::anchor() {}1920CSKYMCAsmInfo::CSKYMCAsmInfo(const Triple &TargetTriple) {21AlignmentIsInBytes = false;22SupportsDebugInformation = true;23CommentString = "#";2425// Uses '.section' before '.bss' directive26UsesELFSectionDirectiveForBSS = true;2728ExceptionsType = ExceptionHandling::DwarfCFI;29}303132