diff options
author | Tom Tromey <tom@tromey.com> | 2021-05-17 14:16:06 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2021-05-17 14:16:07 -0600 |
commit | cd53fa40d480468bdcfc2992cf9753fb59bc7a23 (patch) | |
tree | bb1e16517c217f9815b833a9d1cfe6c3fb902081 /gdb/Makefile.in | |
parent | 347212b81930f9afb9e2885656f897cf3821881c (diff) | |
download | gdb-cd53fa40d480468bdcfc2992cf9753fb59bc7a23.zip gdb-cd53fa40d480468bdcfc2992cf9753fb59bc7a23.tar.gz gdb-cd53fa40d480468bdcfc2992cf9753fb59bc7a23.tar.bz2 |
Rename dwarf2/comp-unit.h
Simon pointed out that dwarf2/cu.h and dwarf2/comp-unit.h seemingly
mean the same thing. He suggested renaming the latter to
comp-unit-head.h, which is what this patch does.
gdb/ChangeLog
2021-05-17 Tom Tromey <tom@tromey.com>
* dwarf2/read.h: Update include.
* dwarf2/read.c: Update include.
* dwarf2/line-header.c: Update include.
* dwarf2/cu.h: Update include.
* dwarf2/comp-unit-head.h: Rename from comp-unit.h.
* dwarf2/comp-unit-head.c: Rename from comp-unit.c.
* Makefile.in (COMMON_SFILES): Update.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 1f37fe4..a9fade8 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1025,7 +1025,7 @@ COMMON_SFILES = \ dummy-frame.c \ dwarf2/abbrev.c \ dwarf2/attribute.c \ - dwarf2/comp-unit.c \ + dwarf2/comp-unit-head.c \ dwarf2/cu.c \ dwarf2/dwz.c \ dwarf2/expr.c \ |