blob: a6c8636ead6d513d20d4b4a1cc640e8868d56bc2 [file] [log] [blame]
Rui Ueyama0b289522016-02-25 18:43:51 +00001//===- 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
13namespace lld {
Rafael Espindolae0df00b2016-02-28 00:25:54 +000014namespace elf {
Sam Cleggf187c4d2018-02-20 22:09:59 +000015
Rui Ueyama4f8d21f2016-05-02 19:30:42 +000016template <class ELFT> void doIcf();
Sam Cleggf187c4d2018-02-20 22:09:59 +000017
18} // namespace elf
George Rimar67c60722017-07-18 11:55:35 +000019} // namespace lld
Rui Ueyama0b289522016-02-25 18:43:51 +000020
21#endif