1ece8a530Spatrick //===- ICF.h --------------------------------------------------------------===// 2ece8a530Spatrick // 3ece8a530Spatrick // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4ece8a530Spatrick // See https://llvm.org/LICENSE.txt for license information. 5ece8a530Spatrick // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6ece8a530Spatrick // 7ece8a530Spatrick //===----------------------------------------------------------------------===// 8ece8a530Spatrick 9ece8a530Spatrick #ifndef LLD_ELF_ICF_H 10ece8a530Spatrick #define LLD_ELF_ICF_H 11ece8a530Spatrick 12*dfe94b16Srobert namespace lld::elf { 13ece8a530Spatrick 14ece8a530Spatrick template <class ELFT> void doIcf(); 15ece8a530Spatrick 16*dfe94b16Srobert } 17ece8a530Spatrick 18ece8a530Spatrick #endif 19