From: nickc Date: Tue, 26 Oct 1999 10:10:51 +0000 (+0000) Subject: Remove spurious test of exp_name X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=149fafb62d2c5b2ae1a41caf2b3342c8d0149e7b;p=pf3gnuchains%2Fsourceware.git Remove spurious test of exp_name --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 9b925ca74d..9cf8511794 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +1999-10-26 Nick Clifton + + * dlltool.c (assemble_file): Remove spurious test of exp_name. + 1999-10-22 Nick Clifton * dlltool.c (struct mac): Add new field 'how_default_as_switches'. diff --git a/binutils/dlltool.c b/binutils/dlltool.c index 7ccedbc861..ed99d4f673 100644 --- a/binutils/dlltool.c +++ b/binutils/dlltool.c @@ -1740,8 +1740,7 @@ assemble_file (source, dest) char * cmd; cmd = (char *) alloca (strlen (ASM_SWITCHES) + strlen (as_flags) - + strlen (exp_name) + strlen (source) - + strlen (dest) + 50); + + strlen (source) + strlen (dest) + 50); sprintf (cmd, "%s %s -o %s %s", ASM_SWITCHES, as_flags, dest, source);