Sam Clegg | c94d393 | 2017-11-17 18:14:09 | [diff] [blame] | 1 | //===- Writer.h -------------------------------------------------*- C++ -*-===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 | [diff] [blame] | 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 |
Sam Clegg | c94d393 | 2017-11-17 18:14:09 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #ifndef LLD_WASM_WRITER_H |
| 10 | #define LLD_WASM_WRITER_H |
| 11 | |
Sam Clegg | d32f71a | 2023-03-06 17:55:00 | [diff] [blame] | 12 | namespace lld::wasm { |
Sam Clegg | c94d393 | 2017-11-17 18:14:09 | [diff] [blame] | 13 | |
| 14 | void writeResult(); |
| 15 | |
Sam Clegg | d32f71a | 2023-03-06 17:55:00 | [diff] [blame] | 16 | } // namespace lld::wasm |
Sam Clegg | c94d393 | 2017-11-17 18:14:09 | [diff] [blame] | 17 | |
| 18 | #endif |