aboutsummaryrefslogtreecommitdiff
path: root/ld/deffilep.y
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2003-03-18 21:33:43 +0000
committerDanny Smith <dannysmith@users.sourceforge.net>2003-03-18 21:33:43 +0000
commit4064c856436483cfa8f13114c208a1f4c3bd6e8e (patch)
treeb45732bdc392c07e866a86d9b00d9c21b9245118 /ld/deffilep.y
parent06600e06816a57df8dbd003b4471d67bedc5286e (diff)
downloadfsf-binutils-gdb-4064c856436483cfa8f13114c208a1f4c3bd6e8e.zip
fsf-binutils-gdb-4064c856436483cfa8f13114c208a1f4c3bd6e8e.tar.gz
fsf-binutils-gdb-4064c856436483cfa8f13114c208a1f4c3bd6e8e.tar.bz2
* 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.y2
1 files changed, 1 insertions, 1 deletions
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; }