diff options
author | Tom Tromey <tom@tromey.com> | 2023-01-26 21:13:20 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2023-02-12 13:03:58 -0700 |
commit | fdc82b33c455b049d4739ef0959f458263197a33 (patch) | |
tree | 8a3d71e0afeeb7d88cb3a858eb4f925d07224e84 /gdb/Makefile.in | |
parent | 8282ad74c302a8e0db7a588e500ae117a1df68c5 (diff) | |
download | gdb-fdc82b33c455b049d4739ef0959f458263197a33.zip gdb-fdc82b33c455b049d4739ef0959f458263197a33.tar.gz gdb-fdc82b33c455b049d4739ef0959f458263197a33.tar.bz2 |
Move some code from dwarf2/read.c to die.c
This patch introduces a new file, dwarf2/die.c, and moves some
DIE-related code out of dwarf2/read.c and into this new file. This is
just a small part of the long-term project to split up read.c.
(According to 'wc', dwarf2/read.c is the largest file in gdb by around
8000 LOC.)
Regression tested on x86-64 Fedora 36.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 049a14f..dac5a66 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1069,6 +1069,7 @@ COMMON_SFILES = \ dwarf2/comp-unit-head.c \ dwarf2/cooked-index.c \ dwarf2/cu.c \ + dwarf2/die.c \ dwarf2/dwz.c \ dwarf2/expr.c \ dwarf2/frame-tailcall.c \ |