From f3f7fbb215564bf18a05749e14fd32e5a86c3def Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Fri, 1 Mar 2002 15:34:32 +0000 Subject: [PATCH] Take into account --kill-at (-k) while generating .exp file. --- binutils/ChangeLog | 5 +++++ binutils/dlltool.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 548b94bfa9..4f24699af8 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2002-03-01 Dmitry Timoshkov + + * dlltool.c (gen_exp_file): Take into account --kill-at (-k) while + generating .exp file. + 2002-02-21 Nick Clifton * readelf.c (dump_relocations): Fix typo. diff --git a/binutils/dlltool.c b/binutils/dlltool.c index a3c52c53c7..0ea3f8ffe9 100644 --- a/binutils/dlltool.c +++ b/binutils/dlltool.c @@ -1,5 +1,5 @@ /* dlltool.c -- tool to generate stuff for PE style DLLs - Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001 + Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. This file is part of GNU Binutils. @@ -1865,7 +1865,7 @@ gen_exp_file () if (!exp->noname || show_allnames) { fprintf (f, "n%d: %s \"%s\"\n", - exp->ordinal, ASM_TEXT, exp->name); + exp->ordinal, ASM_TEXT, xlate (exp->name)); if (exp->forward != 0) fprintf (f, "f%d: %s \"%s\"\n", exp->forward, ASM_TEXT, exp->internal_name);