xref: /freebsd/contrib/llvm-project/lld/ELF/ICF.h (revision bdd1243df58e60e85101c09001d9812a789b6bc4)
10b57cec5SDimitry Andric //===- ICF.h --------------------------------------------------------------===//
20b57cec5SDimitry Andric //
30b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
40b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
50b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
60b57cec5SDimitry Andric //
70b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
80b57cec5SDimitry Andric 
90b57cec5SDimitry Andric #ifndef LLD_ELF_ICF_H
100b57cec5SDimitry Andric #define LLD_ELF_ICF_H
110b57cec5SDimitry Andric 
12*bdd1243dSDimitry Andric namespace lld::elf {
130b57cec5SDimitry Andric 
140b57cec5SDimitry Andric template <class ELFT> void doIcf();
150b57cec5SDimitry Andric 
16*bdd1243dSDimitry Andric }
170b57cec5SDimitry Andric 
180b57cec5SDimitry Andric #endif
19