From: Petr Machata Date: Thu, 7 Oct 2010 00:50:16 +0000 (+0200) Subject: dwarflint: Rename tables.* to dwarf_version.* X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=681947d9e25336ee5e8c7dd5a2ae73b459819cae;p=thirdparty%2Felfutils.git dwarflint: Rename tables.* to dwarf_version.* --- diff --git a/dwarflint/Makefile.am b/dwarflint/Makefile.am index 7d61ff98d..25ff6d757 100644 --- a/dwarflint/Makefile.am +++ b/dwarflint/Makefile.am @@ -47,6 +47,7 @@ dwarflint_SOURCES = \ coverage.cc coverage.hh \ cu_coverage.cc cu_coverage.hh cu_coverage.ii \ dwarflint.cc dwarflint.hh dwarflint.ii \ + dwarf_version.cc dwarf_version.hh \ elf_file.hh elf_file.ii \ expected-at.cc expected.hh \ highlevel_check.cc highlevel_check.hh \ @@ -59,7 +60,6 @@ dwarflint_SOURCES = \ reloc.cc reloc.hh \ section_id.cc section_id.hh \ sections.cc sections.hh sections.ii \ - tables.cc tables.hh \ where.c where.h \ wrap.cc wrap.hh \ check_debug_abbrev.cc check_debug_abbrev.hh check_debug_abbrev.ii \ diff --git a/dwarflint/check_debug_abbrev.cc b/dwarflint/check_debug_abbrev.cc index 3e0f4495d..b010f23b7 100644 --- a/dwarflint/check_debug_abbrev.cc +++ b/dwarflint/check_debug_abbrev.cc @@ -30,7 +30,7 @@ #include "check_debug_info.hh" #include "check_debug_abbrev.hh" #include "pri.hh" -#include "tables.hh" +#include "dwarf_version.hh" #include "sections.hh" #include "checked_read.hh" #include "messages.hh" diff --git a/dwarflint/check_debug_info.cc b/dwarflint/check_debug_info.cc index 4a17cc33c..7bf72d2df 100644 --- a/dwarflint/check_debug_info.cc +++ b/dwarflint/check_debug_info.cc @@ -33,7 +33,7 @@ #include "../libdw/dwarf.h" #include "messages.hh" -#include "tables.hh" +#include "dwarf_version.hh" #include "pri.hh" #include "option.hh" #include "sections.hh" diff --git a/dwarflint/checked_read.hh b/dwarflint/checked_read.hh index 316db3696..6010b19d4 100644 --- a/dwarflint/checked_read.hh +++ b/dwarflint/checked_read.hh @@ -28,7 +28,7 @@ #include "readctx.h" #include "where.h" -#include "tables.hh" +#include "dwarf_version.hh" bool read_size_extra (read_ctx *ctx, uint32_t size32, uint64_t *sizep, int *offset_sizep, where *where); diff --git a/dwarflint/tables.cc b/dwarflint/dwarf_version.cc similarity index 99% rename from dwarflint/tables.cc rename to dwarflint/dwarf_version.cc index 32a728a1c..1b498c1df 100644 --- a/dwarflint/tables.cc +++ b/dwarflint/dwarf_version.cc @@ -27,7 +27,7 @@ // version. Apart from standardized DWARF formats, e.g. DWARF3+GNU is // a version of its own. -#include "tables.hh" +#include "dwarf_version.hh" #include "check_debug_info.hh" #include "../libdw/dwarf.h" diff --git a/dwarflint/tables.hh b/dwarflint/dwarf_version.hh similarity index 100% rename from dwarflint/tables.hh rename to dwarflint/dwarf_version.hh