2016-02-26 02:43:51 +08:00
|
|
|
//===- ICF.h --------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Linker
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#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
|