llvm-capstone/lld/wasm/Writer.h
Sam Clegg c94d393ad5 [WebAssembly] Initial wasm linker implementation
This linker backend is still a work in progress but is
enough to link simple programs including linking against
library archives.

Differential Revision: https://reviews.llvm.org/D34851

llvm-svn: 318539
2017-11-17 18:14:09 +00:00

22 lines
488 B
C++

//===- Writer.h -------------------------------------------------*- C++ -*-===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLD_WASM_WRITER_H
#define LLD_WASM_WRITER_H
namespace lld {
namespace wasm {
void writeResult();
} // namespace wasm
} // namespace lld
#endif