blob: cd32ecffb37dc24ae3531b844fc5571e3dce6480 [file] [log] [blame]
Sam Cleggc94d3932017-11-17 18:14:091//===- Writer.h -------------------------------------------------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:563// 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
Sam Cleggc94d3932017-11-17 18:14:096//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLD_WASM_WRITER_H
10#define LLD_WASM_WRITER_H
11
Sam Cleggd32f71a2023-03-06 17:55:0012namespace lld::wasm {
Sam Cleggc94d3932017-11-17 18:14:0913
14void writeResult();
15
Sam Cleggd32f71a2023-03-06 17:55:0016} // namespace lld::wasm
Sam Cleggc94d3932017-11-17 18:14:0917
18#endif