Fix CORE_ADDR size assertion in symfile-mem.c
authorTom Tromey <tom@tromey.com>
Thu, 12 Mar 2020 19:32:15 +0000 (13:32 -0600)
committerTom Tromey <tromey@adacore.com>
Thu, 12 Mar 2020 19:32:15 +0000 (13:32 -0600)
commit64f251023bcbd068861d4cb83b4e925083e0ea35
tree2cf97ec5aee1f920ba66ddcfc5f9ce1cd98e3c27
parent3f512721a829ce7b2d38236917309a32f42faa99
Fix CORE_ADDR size assertion in symfile-mem.c

symfile-mem.c has some assertions about the size of various types, to
ensure that gdb and BFD don't get out of sync in a way that would
cause bugs.

Once CORE_ADDR is always 64-bit, one of these assertions can fail for
a 32-bit BFD build.  However, the real requirement here is just that
CORE_ADDR is wider -- because this code promotes a bfd_vma to a
CORE_ADDR.

This patch corrects the assert.

gdb/ChangeLog
2020-03-12  Tom Tromey  <tom@tromey.com>

* symfile-mem.c: Update CORE_ADDR size assert.
gdb/ChangeLog
gdb/symfile-mem.c
This page took 0.029954 seconds and 4 git commands to generate.