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-01 22:40:36 +09:00
parent ac49222f79
commit ca81d636f0

4
mold.h
View File

@ -1483,11 +1483,11 @@ public:
return (aux_idx == -1) ? -1 : ctx.symbol_aux[aux_idx].dynsym_idx;
}
bool has_plt(Context <E> &ctx) const {
bool has_plt(Context<E> &ctx) const {
return get_plt_idx(ctx) != -1 || get_pltgot_idx(ctx) != -1;
}
bool has_got(Context <E> &ctx) const {
bool has_got(Context<E> &ctx) const {
return get_got_idx(ctx) != -1;
}