Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / tools / llvm-objdump / WasmDump.h
blob03ff9aed8e07ba92aa5d4ee9e5bf049f4a46f6fc
1 //===-- WasmDump.h - wasm-specific dumper -----------------------*- 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 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_TOOLS_LLVM_OBJDUMP_WASMDUMP_H
10 #define LLVM_TOOLS_LLVM_OBJDUMP_WASMDUMP_H
12 #include "llvm/ADT/SmallVector.h"
14 namespace llvm {
16 class Error;
18 namespace object {
19 class WasmObjectFile;
20 class ObjectFile;
21 class RelocationRef;
22 } // namespace object
24 namespace objdump {
26 Error getWasmRelocationValueString(const object::WasmObjectFile *Obj,
27 const object::RelocationRef &RelRef,
28 llvm::SmallVectorImpl<char> &Result);
30 void printWasmFileHeader(const object::ObjectFile *O);
32 } // namespace objdump
33 } // namespace llvm
35 #endif