1303239Sdim//===- ICF.h --------------------------------------------------------------===//
2303239Sdim//
3353358Sdim// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4353358Sdim// See https://llvm.org/LICENSE.txt for license information.
5353358Sdim// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6303239Sdim//
7303239Sdim//===----------------------------------------------------------------------===//
8303239Sdim
9303239Sdim#ifndef LLD_ELF_ICF_H
10303239Sdim#define LLD_ELF_ICF_H
11303239Sdim
12303239Sdimnamespace lld {
13303239Sdimnamespace elf {
14341825Sdim
15303239Sdimtemplate <class ELFT> void doIcf();
16341825Sdim
17341825Sdim} // namespace elf
18321369Sdim} // namespace lld
19303239Sdim
20303239Sdim#endif
21