From: Danny Smith Date: Tue, 18 Mar 2003 21:33:43 +0000 (+0000) Subject: * defilep.y (opt_base): If no number given, set to default X-Git-Tag: binutils-2_14-branchpoint~462 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4064c856436483cfa8f13114c208a1f4c3bd6e8e;p=platform%2Fupstream%2Fbinutils.git * defilep.y (opt_base): If no number given, set to default (-1), not 0. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index a2de168..66132bf 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2003-03-18 Danny Smith + + * defilep.y (opt_base): If no number given, set to default + (-1), not 0. + 2003-03-13 Danny Smith * deffilep.y (def_import): Use default extension of "dll" diff --git a/ld/deffilep.y b/ld/deffilep.y index 529b826..45b1bda 100644 --- a/ld/deffilep.y +++ b/ld/deffilep.y @@ -236,7 +236,7 @@ opt_equal_name: ; opt_base: BASE '=' NUMBER { $$ = $3;} - | { $$ = 0;} + | { $$ = -1;} ; dot_name: ID { $$ = $1; }