2016-02-26 02:43:51 +08:00
|
|
|
//===- ICF.h --------------------------------------------------------------===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08: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
|
2016-02-26 02:43:51 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLD_ELF_ICF_H
|
|
|
|
#define LLD_ELF_ICF_H
|
|
|
|
|
|
|
|
namespace lld {
|
2016-02-28 08:25:54 +08:00
|
|
|
namespace elf {
|
2018-02-21 06:09:59 +08:00
|
|
|
|
2016-05-03 03:30:42 +08:00
|
|
|
template <class ELFT> void doIcf();
|
2018-02-21 06:09:59 +08:00
|
|
|
|
|
|
|
} // namespace elf
|
2017-07-18 19:55:35 +08:00
|
|
|
} // namespace lld
|
2016-02-26 02:43:51 +08:00
|
|
|
|
|
|
|
#endif
|