diff options
Diffstat (limited to 'contrib/llvm/tools/lld/ELF/ICF.h')
-rw-r--r-- | contrib/llvm/tools/lld/ELF/ICF.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/contrib/llvm/tools/lld/ELF/ICF.h b/contrib/llvm/tools/lld/ELF/ICF.h new file mode 100644 index 000000000000..a6c8636ead6d --- /dev/null +++ b/contrib/llvm/tools/lld/ELF/ICF.h @@ -0,0 +1,21 @@ +//===- 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> void doIcf(); + +} // namespace elf +} // namespace lld + +#endif |