diff options
author | Nick Clifton <nickc@redhat.com> | 2002-03-01 15:34:32 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-03-01 15:34:32 +0000 |
commit | f3f7fbb215564bf18a05749e14fd32e5a86c3def (patch) | |
tree | c403b3fb02fc4682bb55948b2733607dcf5a08ce /binutils/dlltool.c | |
parent | 831b02f6e00a29d3a70d86484bcd88ba59e8259a (diff) | |
download | gdb-f3f7fbb215564bf18a05749e14fd32e5a86c3def.zip gdb-f3f7fbb215564bf18a05749e14fd32e5a86c3def.tar.gz gdb-f3f7fbb215564bf18a05749e14fd32e5a86c3def.tar.bz2 |
Take into account --kill-at (-k) while generating .exp file.
Diffstat (limited to 'binutils/dlltool.c')
-rw-r--r-- | binutils/dlltool.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils/dlltool.c b/binutils/dlltool.c index a3c52c5..0ea3f8f 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); |