//===-- X86AsmPrinter.h - X86 implementation of AsmPrinter ------*- 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 // //===----------------------------------------------------------------------===// #ifndef LLVM_LIB_TARGET_X86_X86ASMPRINTER_H #define LLVM_LIB_TARGET_X86_X86ASMPRINTER_H #include "llvm/CodeGen/AsmPrinter.h" #include "llvm/CodeGen/FaultMaps.h" #include "llvm/CodeGen/StackMaps.h" // Implemented in X86MCInstLower.cpp namespace { class X86MCInstLower; } namespace llvm { class MCCodeEmitter; class MCStreamer; class X86Subtarget; class TargetMachine; class LLVM_LIBRARY_VISIBILITY X86AsmPrinter : public AsmPrinter { … }; } // end namespace llvm #endif