Skip to content

Commit

Permalink
Disable GOT symbols (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
eukarpov authored and github-actions committed Sep 22, 2024
1 parent 41f033e commit a0760b6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions gcc/config/aarch64/aarch64.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20909,6 +20909,9 @@ aarch64_tlsdesc_abi_id ()
static bool
aarch64_symbol_binds_local_p (const_rtx x)
{
if (TARGET_PECOFF)
return true;

return (SYMBOL_REF_DECL (x)
? targetm.binds_local_p (SYMBOL_REF_DECL (x))
: SYMBOL_REF_LOCAL_P (x));
Expand Down

0 comments on commit a0760b6

Please sign in to comment.