2018-01-31 09:45:47 +08:00
|
|
|
//===- MarkLive.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_MARKLIVE_H
|
|
|
|
#define LLD_WASM_MARKLIVE_H
|
|
|
|
|
|
|
|
namespace lld {
|
|
|
|
namespace wasm {
|
|
|
|
|
|
|
|
void markLive();
|
2018-02-21 05:53:18 +08:00
|
|
|
|
|
|
|
} // namespace wasm
|
2018-01-31 09:45:47 +08:00
|
|
|
} // namespace lld
|
|
|
|
|
|
|
|
#endif // LLD_WASM_MARKLIVE_H
|