OSDN Git Service

* defilep.y (opt_base): If no number given, set to default
authordannysmith <dannysmith>
Tue, 18 Mar 2003 21:33:43 +0000 (21:33 +0000)
committerdannysmith <dannysmith>
Tue, 18 Mar 2003 21:33:43 +0000 (21:33 +0000)
(-1), not 0.

ld/ChangeLog
ld/deffilep.y

index a2de168..66132bf 100644 (file)
@@ -1,3 +1,8 @@
+2003-03-18  Danny Smith  <dannysmith@users.sourceforge,net>
+
+       * defilep.y (opt_base): If no number given, set to default
+       (-1), not 0.
+
 2003-03-13  Danny Smith  <dannysmith@users.sourceforge,net> 
 
        * deffilep.y (def_import):  Use default extension of "dll"
index 529b826..45b1bda 100644 (file)
@@ -236,7 +236,7 @@ opt_equal_name:
        ;
 
 opt_base: BASE '=' NUMBER      { $$ = $3;}
-       |       { $$ = 0;}
+       |       { $$ = -1;}
        ;
 
 dot_name: ID           { $$ = $1; }