[binutils-gdb] Revert delta accidentally applied with commit 9372689d72f902c8bae90536acc4747fb0a4b1e1
Nick Clifton
nickc@sourceware.org
Mon Nov 9 16:48:05 GMT 2020
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=3e50c9d9c973da7fbe3dc1050958cde7afc65b3c
commit 3e50c9d9c973da7fbe3dc1050958cde7afc65b3c
Author: Nick Clifton <nickc@redhat.com>
Date: Mon Nov 9 16:47:29 2020 +0000
Revert delta accidentally applied with commit 9372689d72f902c8bae90536acc4747fb0a4b1e1
Diff:
---
gas/write.c | 24 ------------------------
1 file changed, 24 deletions(-)
diff --git a/gas/write.c b/gas/write.c
index 36fc40488d9..054f27987d5 100644
--- a/gas/write.c
+++ b/gas/write.c
@@ -771,22 +771,6 @@ resolve_reloc_expr_symbols (void)
}
}
-static bfd_boolean
-is_dwo_section (asection *sec)
-{
- const char *name;
- int len;
-
- if (sec == NULL || (name = bfd_section_name (sec)) == NULL)
- return FALSE;
-
- len = strlen (name);
- if (len < 5)
- return FALSE;
-
- return strncmp (name + len - 4, ".dwo", 4) == 0;
-}
-
/* This pass over fixups decides whether symbols can be replaced with
section symbols. */
@@ -915,14 +899,6 @@ adjust_reloc_syms (bfd *abfd ATTRIBUTE_UNUSED,
#endif
}
- /* PR 26841: DWO sections are not supposed to have relocations. */
- if (is_dwo_section (sec) && seginfo->fix_root != NULL)
- {
- as_bad (_("DWO section '%s' contains unresolved expressions - this is not allowed"),
- bfd_section_name (sec));
- seginfo->fix_root = NULL; /* FIXME: Memory leak ? */
- }
-
dump_section_relocs (abfd, sec, stderr);
}
More information about the Binutils-cvs
mailing list