or1k relocation truncated to fit: R_OR1K_GOT16 even when using -mcmodel=large
authorLuca Bonissi <gcc@scarsita.it>
Wed, 10 May 2023 11:08:28 +0000 (12:08 +0100)
committerNick Clifton <nickc@redhat.com>
Wed, 10 May 2023 11:08:28 +0000 (12:08 +0100)
  PR 30422
  * elf32-or1k.c (or1k_elf_relocate_section): Prescan for R_OR1K_GOT_AHI16 relocs as they may occur after R_OR1K_GOT16 relocs.

bfd/ChangeLog
bfd/elf32-or1k.c

index b8150d4d0c8edf28abb2ea0a1d5dd965cd526ccd..5cb20e1c278ff9e55ec698c213a2a75ed42e6aaa 100644 (file)
@@ -1,3 +1,10 @@
+2023-05-10  Luca Bonissi  <gcc@scarsita.it>
+
+       PR 30422
+       * elf32-or1k.c (or1k_elf_relocate_section): Prescan for
+       R_OR1K_GOT_AHI16 relocs as they may occur after R_OR1K_GOT16
+       relocs.
+
 2023-05-05  Nick Clifton  <nickc@redhat.com>
 
        PR 30354
index 48b8f7657478a7f9539e09184252f159fa0c5f14..6b20e27cf09617aff2a47e22c19affe606faaeb5 100644 (file)
@@ -1341,6 +1341,17 @@ or1k_elf_relocate_section (bfd *output_bfd,
   sym_hashes = elf_sym_hashes (input_bfd);
   relend = relocs + input_section->reloc_count;
 
+  /* Make a full scan for R_OR1K_GOT_AHI16, since it could be AFTER R_OR1K_GOT16.  */
+  for (rel = relocs; rel < relend; rel++)
+    {
+      int r_type = ELF32_R_TYPE (rel->r_info);
+      if (r_type==R_OR1K_GOT_AHI16)
+        {
+         saw_gotha = true;
+         break;
+        }
+    }
+
   for (rel = relocs; rel < relend; rel++)
     {
       reloc_howto_type *howto;
@@ -1520,9 +1531,6 @@ or1k_elf_relocate_section (bfd *output_bfd,
                || r_type == R_OR1K_GOT_AHI16)
              relocation -= got_sym_value;
 
-           if (r_type == R_OR1K_GOT_AHI16)
-             saw_gotha = true;
-
            /* If we have a R_OR1K_GOT16 following a R_OR1K_GOT_AHI16
               relocation we assume the code is doing the right thing to avoid
               overflows.  */