1*e8d8bef9SDimitry Andric //===-- CSKYMCAsmInfo.cpp - CSKY Asm properties ---------------------------===// 2*e8d8bef9SDimitry Andric // 3*e8d8bef9SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*e8d8bef9SDimitry Andric // See https://llvm.org/LICENSE.txt for license information. 5*e8d8bef9SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*e8d8bef9SDimitry Andric // 7*e8d8bef9SDimitry Andric //===----------------------------------------------------------------------===// 8*e8d8bef9SDimitry Andric // 9*e8d8bef9SDimitry Andric // This file contains the declarations of the CSKYMCAsmInfo properties. 10*e8d8bef9SDimitry Andric // 11*e8d8bef9SDimitry Andric //===----------------------------------------------------------------------===// 12*e8d8bef9SDimitry Andric 13*e8d8bef9SDimitry Andric #include "CSKYMCAsmInfo.h" 14*e8d8bef9SDimitry Andric #include "llvm/BinaryFormat/Dwarf.h" 15*e8d8bef9SDimitry Andric #include "llvm/MC/MCStreamer.h" 16*e8d8bef9SDimitry Andric 17*e8d8bef9SDimitry Andric using namespace llvm; 18*e8d8bef9SDimitry Andric 19*e8d8bef9SDimitry Andric void CSKYMCAsmInfo::anchor() {} 20*e8d8bef9SDimitry Andric 21*e8d8bef9SDimitry Andric CSKYMCAsmInfo::CSKYMCAsmInfo(const Triple &TargetTriple) { 22*e8d8bef9SDimitry Andric AlignmentIsInBytes = false; 23*e8d8bef9SDimitry Andric SupportsDebugInformation = true; 24*e8d8bef9SDimitry Andric CommentString = "#"; 25*e8d8bef9SDimitry Andric } 26