WasmConfig.h 696 B

123456789101112131415161718192021
  1. //===- WasmConfig.h ---------------------------------------------*- 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. #ifndef LLVM_TOOLS_LLVM_OBJCOPY_WASM_WASMCONFIG_H
  9. #define LLVM_TOOLS_LLVM_OBJCOPY_WASM_WASMCONFIG_H
  10. namespace llvm {
  11. namespace objcopy {
  12. // Wasm specific configuration for copying/stripping a single file.
  13. struct WasmConfig {};
  14. } // namespace objcopy
  15. } // namespace llvm
  16. #endif // LLVM_TOOLS_LLVM_OBJCOPY_WASM_WASMCONFIG_H