diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2003-03-18 21:33:43 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2003-03-18 21:33:43 +0000 |
commit | 4064c856436483cfa8f13114c208a1f4c3bd6e8e (patch) | |
tree | b45732bdc392c07e866a86d9b00d9c21b9245118 /ld/deffilep.y | |
parent | * infrun.c (observer.h): Add #include. (diff) | |
download | binutils-gdb-4064c856436483cfa8f13114c208a1f4c3bd6e8e.tar.gz binutils-gdb-4064c856436483cfa8f13114c208a1f4c3bd6e8e.tar.bz2 binutils-gdb-4064c856436483cfa8f13114c208a1f4c3bd6e8e.zip |
* defilep.y (opt_base): If no number given, set to default
(-1), not 0.
Diffstat (limited to 'ld/deffilep.y')
-rw-r--r-- | ld/deffilep.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/deffilep.y b/ld/deffilep.y index 529b8261130..45b1bda6f43 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; } |