Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 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 { |
Rafael Espindola | e0df00b | 2016-02-28 00:25:54 +0000 | [diff] [blame] | 14 | namespace elf { |
Sam Clegg | f187c4d | 2018-02-20 22:09:59 +0000 | [diff] [blame] | 15 | |
Rui Ueyama | 4f8d21f | 2016-05-02 19:30:42 +0000 | [diff] [blame] | 16 | template <class ELFT> void doIcf(); |
Sam Clegg | f187c4d | 2018-02-20 22:09:59 +0000 | [diff] [blame] | 17 | |
| 18 | } // namespace elf |
George Rimar | 67c6072 | 2017-07-18 11:55:35 +0000 | [diff] [blame] | 19 | } // namespace lld |
Rui Ueyama | 0b28952 | 2016-02-25 18:43:51 +0000 | [diff] [blame] | 20 | |
| 21 | #endif |