Path: blob/main/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.h
35294 views
//===- SparcMCAsmInfo.h - Sparc 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//===----------------------------------------------------------------------===//7//8// This file contains the declaration of the SparcMCAsmInfo class.9//10//===----------------------------------------------------------------------===//1112#ifndef LLVM_LIB_TARGET_SPARC_MCTARGETDESC_SPARCMCASMINFO_H13#define LLVM_LIB_TARGET_SPARC_MCTARGETDESC_SPARCMCASMINFO_H1415#include "llvm/MC/MCAsmInfoELF.h"1617namespace llvm {1819class Triple;2021class SparcELFMCAsmInfo : public MCAsmInfoELF {22void anchor() override;2324public:25explicit SparcELFMCAsmInfo(const Triple &TheTriple);2627const MCExpr*28getExprForPersonalitySymbol(const MCSymbol *Sym, unsigned Encoding,29MCStreamer &Streamer) const override;30const MCExpr* getExprForFDESymbol(const MCSymbol *Sym,31unsigned Encoding,32MCStreamer &Streamer) const override;3334};3536} // end namespace llvm3738#endif // LLVM_LIB_TARGET_SPARC_MCTARGETDESC_SPARCMCASMINFO_H394041