mirror of
https://github.com/intel/llvm.git
synced 2026-01-25 10:55:58 +08:00
23 lines
520 B
C++
23 lines
520 B
C++
//===- ICF.h --------------------------------------------------------------===//
|
|
//
|
|
// The LLVM Linker
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLD_ELF_ICF_H
|
|
#define LLD_ELF_ICF_H
|
|
|
|
namespace lld {
|
|
namespace elf {
|
|
|
|
template <class ELFT> class SymbolTable;
|
|
|
|
template <class ELFT> void doIcf(SymbolTable<ELFT> *);
|
|
}
|
|
}
|
|
|
|
#endif
|