1
1
mirror of https://github.com/rui314/mold.git synced 2024-12-27 10:23:41 +03:00
This commit is contained in:
Rui Ueyama 2021-04-17 20:51:24 +09:00
parent db63489db3
commit 961abc2530
2 changed files with 0 additions and 2 deletions

1
mold.h
View File

@ -1166,7 +1166,6 @@ template <typename E> void resolve_obj_symbols(Context<E> &);
template <typename E> void resolve_dso_symbols(Context<E> &);
template <typename E> void eliminate_comdats(Context<E> &);
template <typename E> void convert_common_symbols(Context<E> &);
template <typename E> void add_comment_string(Context<E> &, std::string str);
template <typename E> void compute_merged_section_sizes(Context<E> &);
template <typename E> void bin_sections(Context<E> &);
template <typename E> void check_duplicate_symbols(Context<E> &);

View File

@ -789,7 +789,6 @@ void fix_synthetic_symbols(Context<E> &ctx) {
template void resolve_dso_symbols(Context<E> &ctx); \
template void eliminate_comdats(Context<E> &ctx); \
template void convert_common_symbols(Context<E> &ctx); \
template void add_comment_string(Context<E> &ctx, std::string str); \
template void compute_merged_section_sizes(Context<E> &ctx); \
template void bin_sections(Context<E> &ctx); \
template void check_duplicate_symbols(Context<E> &ctx); \