]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lld/ELF/ICF.h
Merge lld trunk r338150, and resolve conflicts.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lld / ELF / ICF.h
1 //===- ICF.h --------------------------------------------------------------===//
2 //
3 //                             The LLVM Linker
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LLD_ELF_ICF_H
11 #define LLD_ELF_ICF_H
12
13 namespace lld {
14 namespace elf {
15
16 template <class ELFT> void doIcf();
17
18 } // namespace elf
19 } // namespace lld
20
21 #endif