summaryrefslogtreecommitdiff
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
commitac41051480c946a2dccf7b9a896e7327a495c2e1 (patch)
tree1f571a105d3a997155799f65c40c627883bb58c6 /ld/deffilep.y
parent9f529b06029a7fc74f8a0d5e13c00a5218fdff60 (diff)
downloadbinutils-redhat-ac41051480c946a2dccf7b9a896e7327a495c2e1.tar.gz
* 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 529b826113..45b1bda6f4 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; }