//= LoongArchMCExpr.h - LoongArch specific MC expression classes -*- C++ -*-==// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file describes LoongArch-specific MCExprs, used for modifiers like // "%pc_hi20" or "%pc_lo12" etc. // //===----------------------------------------------------------------------===// #ifndef LLVM_LIB_TARGET_LOONGARCH_MCTARGETDESC_LOONGARCHMCEXPR_H #define LLVM_LIB_TARGET_LOONGARCH_MCTARGETDESC_LOONGARCHMCEXPR_H #include "llvm/MC/MCExpr.h" namespace llvm { class StringRef; class LoongArchMCExpr : public MCTargetExpr { … }; } // end namespace llvm #endif