diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2024-04-22 16:10:14 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2024-04-22 21:34:19 -0400 |
commit | ec4525259262492b61fb9bd2f9acdf156ab037fc (patch) | |
tree | 73e3cf9b3f4049db32037f6ede09abd6dd08ec71 /gdb/dwarf2 | |
parent | 15afb100ea6bc04d8944a919bf58c5c3fb8c20ec (diff) | |
download | binutils-ec4525259262492b61fb9bd2f9acdf156ab037fc.zip binutils-ec4525259262492b61fb9bd2f9acdf156ab037fc.tar.gz binutils-ec4525259262492b61fb9bd2f9acdf156ab037fc.tar.bz2 |
gdb: move store/extract integer functions to extract-store-integer.{c,h}
Move the declarations out of defs.h, and the implementations out of
findvar.c.
I opted for a new file, because this functionality of converting
integers to bytes and vice-versa seems a bit to generic to live in
findvar.c.
Change-Id: I524858fca33901ee2150c582bac16042148d2251
Approved-By: John Baldwin <jhb@FreeBSD.org>
Diffstat (limited to 'gdb/dwarf2')
-rw-r--r-- | gdb/dwarf2/index-common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/dwarf2/index-common.h b/gdb/dwarf2/index-common.h index dca4151..0a871a7 100644 --- a/gdb/dwarf2/index-common.h +++ b/gdb/dwarf2/index-common.h @@ -20,6 +20,8 @@ #ifndef DWARF_INDEX_COMMON_H #define DWARF_INDEX_COMMON_H +#include "extract-store-integer.h" + /* The suffix for an index file. */ #define INDEX4_SUFFIX ".gdb-index" #define INDEX5_SUFFIX ".debug_names" |