https://sourceware.org/bugzilla/show_bug.cgi?id=33840
Bug ID: 33840
Summary: Possible typo in "pcrel_lo missing marching pcrel_hi"
Product: binutils
Version: 2.46
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: binutils
Assignee: unassigned at sourceware dot org
Reporter: fmarchal at perso dot be
Target Milestone: ---
In elfnn-loongarch.c, the string "pcrel_lo missing marching pcrel_hi" appears
to contain a typo.
It used to be "%pcrel_lo missing matching %pcrel_hi".
"matching" is now "marching". "r" instead of "t".
906 static loongarch_pcrel_hi_reloc *
907 loongarch_find_pcrel_hi_reloc (loongarch_pcrel_relocs *p, bfd_vma address)
908 {
909 loongarch_pcrel_hi_reloc search = {address, 0, 0, NULL};
910 loongarch_pcrel_hi_reloc *entry = htab_find (p->hi_relocs, &search);
911
912 if (entry == NULL)
913 _bfd_error_handler (_("pcrel_lo missing marching pcrel_hi"));
914
915 return entry;
916 }
--
You are receiving this mail because:
You are on the CC list for the bug.