summaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2023-12-03 15:05:35 -0700
committerTom Tromey <tom@tromey.com>2024-01-18 08:20:17 -0700
commit2d34b0ea1aa113878cd0eb6152e7c261c2f98bce (patch)
treeb695e443cd4edd3ce6660cc9c0f78b829aa7f8fd /gdb
parentb371f07c47c73d9597f74f87bc6e22ba04db1963 (diff)
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.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/dwarf2/read-debug-names.c3
-rw-r--r--gdb/dwarf2/read-debug-names.h2
2 files changed, 3 insertions, 2 deletions
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. */