//===-- R600AsmPrinter.h - Print R600 assembly code -------------*- 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 // //===----------------------------------------------------------------------===// // /// \file /// R600 Assembly printer class. // //===----------------------------------------------------------------------===// #ifndef LLVM_LIB_TARGET_AMDGPU_R600ASMPRINTER_H #define LLVM_LIB_TARGET_AMDGPU_R600ASMPRINTER_H #include "llvm/CodeGen/AsmPrinter.h" namespace llvm { class R600AsmPrinter final : public AsmPrinter { … }; AsmPrinter * createR600AsmPrinterPass(TargetMachine &TM, std::unique_ptr<MCStreamer> &&Streamer); } // namespace llvm #endif // LLVM_LIB_TARGET_AMDGPU_R600ASMPRINTER_H