xref: /openbsd-src/gnu/llvm/lld/wasm/Writer.h (revision ece8a53058b183aa0a669e21c57225431117089d)
1*ece8a530Spatrick //===- Writer.h -------------------------------------------------*- C++ -*-===//
2*ece8a530Spatrick //
3*ece8a530Spatrick // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*ece8a530Spatrick // See https://llvm.org/LICENSE.txt for license information.
5*ece8a530Spatrick // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*ece8a530Spatrick //
7*ece8a530Spatrick //===----------------------------------------------------------------------===//
8*ece8a530Spatrick 
9*ece8a530Spatrick #ifndef LLD_WASM_WRITER_H
10*ece8a530Spatrick #define LLD_WASM_WRITER_H
11*ece8a530Spatrick 
12*ece8a530Spatrick namespace lld {
13*ece8a530Spatrick namespace wasm {
14*ece8a530Spatrick 
15*ece8a530Spatrick void writeResult();
16*ece8a530Spatrick 
17*ece8a530Spatrick } // namespace wasm
18*ece8a530Spatrick } // namespace lld
19*ece8a530Spatrick 
20*ece8a530Spatrick #endif
21