1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00
llvm-mirror/tools/llvm-objcopy/wasm/WasmObjcopy.h
Alexey Lapshin 2bc33a6598 [llvm-objcopy] Refactor CopyConfig structure.
This patch prepares llvm-objcopy to move its implementation
into a separate library. To make it possible it is necessary
to minimize internal dependencies.

Differential Revision: https://reviews.llvm.org/D99055
2021-05-20 13:14:51 +03:00

33 lines
951 B
C++

//===- WasmObjcopy.h -------------------------------------------*- 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_TOOLS_LLVM_OBJCOPY_WASM_WASMOBJCOPY_H
#define LLVM_TOOLS_LLVM_OBJCOPY_WASM_WASMOBJCOPY_H
namespace llvm {
class Error;
class raw_ostream;
namespace object {
class WasmObjectFile;
} // end namespace object
namespace objcopy {
struct CommonConfig;
struct WasmConfig;
namespace wasm {
Error executeObjcopyOnBinary(const CommonConfig &Config, const WasmConfig &,
object::WasmObjectFile &In, raw_ostream &Out);
} // end namespace wasm
} // end namespace objcopy
} // end namespace llvm
#endif // LLVM_TOOLS_LLVM_OBJCOPY_WASM_WASMOBJCOPY_H