Path: blob/main/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.h
35294 views
//===-- RISCVMCAsmInfo.h - RISC-V Asm Info ---------------------*- 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//===----------------------------------------------------------------------===//7//8// This file contains the declaration of the RISCVMCAsmInfo class.9//10//===----------------------------------------------------------------------===//1112#ifndef LLVM_LIB_TARGET_RISCV_MCTARGETDESC_RISCVMCASMINFO_H13#define LLVM_LIB_TARGET_RISCV_MCTARGETDESC_RISCVMCASMINFO_H1415#include "llvm/MC/MCAsmInfoELF.h"1617namespace llvm {18class Triple;1920class RISCVMCAsmInfo : public MCAsmInfoELF {21void anchor() override;2223public:24explicit RISCVMCAsmInfo(const Triple &TargetTriple);2526const MCExpr *getExprForFDESymbol(const MCSymbol *Sym, unsigned Encoding,27MCStreamer &Streamer) const override;28};2930} // namespace llvm3132#endif333435