* defilep.y (opt_base): If no number given, set to default
authorDanny Smith <dannysmith@users.sourceforge.net>
Tue, 18 Mar 2003 21:33:43 +0000 (21:33 +0000)
committerDanny Smith <dannysmith@users.sourceforge.net>
Tue, 18 Mar 2003 21:33:43 +0000 (21:33 +0000)
(-1), not 0.

ld/ChangeLog
ld/deffilep.y

index a2de168287756a7f8869e0d055114034c7c2e4d1..66132bf07ec2afaf81feb7dcbfcb2636c1586541 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 529b8261130410cdcbda221f4e7d5b674c2be0d8..45b1bda6f43a936f4cf6176eeeaae4d94e76ec52 100644 (file)
@@ -236,7 +236,7 @@ opt_equal_name:
        ;
 
 opt_base: BASE '=' NUMBER      { $$ = $3;}
-       |       { $$ = 0;}
+       |       { $$ = -1;}
        ;
 
 dot_name: ID           { $$ = $1; }
This page took 0.027982 seconds and 4 git commands to generate.