From: nasm-bot f. C. G. <gor...@gm...> - 2016-04-21 06:18:22
|
Commit-ID: 23a80d399e575388084ece05a87f409e5585c4cd Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=23a80d399e575388084ece05a87f409e5585c4cd Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sun, 13 Mar 2016 13:45:03 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Mon, 11 Apr 2016 00:07:14 +0300 out: Elf32 -- Unify dwarf_ nums Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- output/outelf32.c | 2 +- output/outelf64.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/output/outelf32.c b/output/outelf32.c index 2868090..afd9438 100644 --- a/output/outelf32.c +++ b/output/outelf32.c @@ -151,7 +151,7 @@ static uint8_t *arangesbuf = 0, *arangesrelbuf = 0, *pubnamesbuf = 0, *infobuf = static int8_t line_base = -5, line_range = 14, opcode_base = 13; static int arangeslen, arangesrellen, pubnameslen, infolen, inforellen, abbrevlen, linelen, linerellen, framelen, loclen; -static int32_t dwarf_infosym, dwarf_abbrevsym, dwarf_linesym; +static int64_t dwarf_infosym, dwarf_abbrevsym, dwarf_linesym; static const struct dfmt df_dwarf; static const struct dfmt df_stabs; diff --git a/output/outelf64.c b/output/outelf64.c index fd23502..93696b1 100644 --- a/output/outelf64.c +++ b/output/outelf64.c @@ -153,7 +153,6 @@ static int arangeslen, arangesrellen, pubnameslen, infolen, inforellen, abbrevlen, linelen, linerellen, framelen, loclen; static int64_t dwarf_infosym, dwarf_abbrevsym, dwarf_linesym; - static const struct dfmt df_dwarf; static const struct dfmt df_stabs; static struct elf_symbol *lastsym; |