]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lld/COFF/ICF.h
MFC r343601:
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lld / COFF / 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_COFF_ICF_H
11 #define LLD_COFF_ICF_H
12
13 #include "lld/Common/LLVM.h"
14 #include "llvm/ADT/ArrayRef.h"
15
16 namespace lld {
17 namespace coff {
18
19 class Chunk;
20
21 void doICF(ArrayRef<Chunk *> Chunks);
22
23 } // namespace coff
24 } // namespace lld
25
26 #endif