From: Tom Tromey Date: Sun, 3 Dec 2023 22:05:35 +0000 (-0700) Subject: Export dwarf5_augmentation X-Git-Tag: gdb-15-branchpoint~1217 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2d34b0ea1aa113878cd0eb6152e7c261c2f98bce;p=thirdparty%2Fbinutils-gdb.git Export dwarf5_augmentation I don't know why gdb had the .debug_names augmentation string in two separate places; this patch exports it in one spot, to be used in another. --- diff --git a/gdb/dwarf2/read-debug-names.c b/gdb/dwarf2/read-debug-names.c index 52caff725ca..e2563e84fcf 100644 --- a/gdb/dwarf2/read-debug-names.c +++ b/gdb/dwarf2/read-debug-names.c @@ -404,8 +404,7 @@ static_assert (sizeof (old_gdb_augmentation) % 4 == 0); /* DWARF-5 augmentation string for GDB's DW_IDX_GNU_* extension. This must have a size that is a multiple of 4. */ -static const gdb_byte dwarf5_augmentation[] - = { 'G', 'D', 'B', '2', 0, 0, 0, 0 }; +const gdb_byte dwarf5_augmentation[8] = { 'G', 'D', 'B', '2', 0, 0, 0, 0 }; static_assert (sizeof (dwarf5_augmentation) % 4 == 0); /* A helper function that reads the .debug_names section in SECTION diff --git a/gdb/dwarf2/read-debug-names.h b/gdb/dwarf2/read-debug-names.h index 97d477f958b..e616cf887a7 100644 --- a/gdb/dwarf2/read-debug-names.h +++ b/gdb/dwarf2/read-debug-names.h @@ -22,6 +22,8 @@ struct dwarf2_per_objfile; +extern const gdb_byte dwarf5_augmentation[8]; + /* Read .debug_names. If everything went ok, initialize the "quick" elements of all the CUs and return true. Otherwise, return false. */