[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / utils / TableGen / WebAssemblyDisassemblerEmitter.h
blob2d814cf0675aebb101b58db7fc2357a7974b6a2b
1 //===- WebAssemblyDisassemblerEmitter.h - Disassembler tables ---*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file is part of the WebAssembly Disassembler Emitter.
10 // It contains the interface of the disassembler tables.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_UTILS_TABLEGEN_WEBASSEMBLYDISASSEMBLEREMITTER_H
15 #define LLVM_UTILS_TABLEGEN_WEBASSEMBLYDISASSEMBLEREMITTER_H
17 #include "llvm/ADT/ArrayRef.h"
19 namespace llvm {
21 class CodeGenInstruction;
22 class raw_ostream;
24 void emitWebAssemblyDisassemblerTables(
25 raw_ostream &OS, ArrayRef<const CodeGenInstruction *> NumberedInstructions);
27 } // namespace llvm
29 #endif