2018-02-20 22:09:59 +00:00
|
|
|
//===- MarkLive.h -----------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 08:50:56 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2018-02-20 22:09:59 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLD_ELF_MARKLIVE_H
|
|
|
|
#define LLD_ELF_MARKLIVE_H
|
|
|
|
|
2022-08-10 15:31:58 -04:00
|
|
|
namespace lld::elf {
|
2024-09-29 15:32:16 -07:00
|
|
|
struct Ctx;
|
2018-02-20 22:09:59 +00:00
|
|
|
|
2024-09-29 15:32:16 -07:00
|
|
|
template <class ELFT> void markLive(Ctx &);
|
2022-08-10 15:31:58 -04:00
|
|
|
}
|
2018-02-20 22:09:59 +00:00
|
|
|
|
|
|
|
#endif // LLD_ELF_MARKLIVE_H
|