annotate lld/ELF/ICF.h @ 266:00f31e85ec16 default tip

Added tag current for changeset 31d058e83c98
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sat, 14 Oct 2023 10:13:55 +0900
parents c4bab56944e8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 //===- ICF.h --------------------------------------------------------------===//
anatofuz
parents:
diff changeset
2 //
anatofuz
parents:
diff changeset
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
anatofuz
parents:
diff changeset
4 // See https://llvm.org/LICENSE.txt for license information.
anatofuz
parents:
diff changeset
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
anatofuz
parents:
diff changeset
6 //
anatofuz
parents:
diff changeset
7 //===----------------------------------------------------------------------===//
anatofuz
parents:
diff changeset
8
anatofuz
parents:
diff changeset
9 #ifndef LLD_ELF_ICF_H
anatofuz
parents:
diff changeset
10 #define LLD_ELF_ICF_H
anatofuz
parents:
diff changeset
11
236
c4bab56944e8 LLVM 16
kono
parents: 150
diff changeset
12 namespace lld::elf {
150
anatofuz
parents:
diff changeset
13
anatofuz
parents:
diff changeset
14 template <class ELFT> void doIcf();
anatofuz
parents:
diff changeset
15
236
c4bab56944e8 LLVM 16
kono
parents: 150
diff changeset
16 }
150
anatofuz
parents:
diff changeset
17
anatofuz
parents:
diff changeset
18 #endif