* c-exp.y, m2-exp.y: Define more yysymbols that happen to be

"bss" rather than "data" symbols, but which still conflict.
* m2-exp.y:  Lint.
This commit is contained in:
John Gilmore 1991-09-28 01:30:41 +00:00
parent c022837644
commit 39bf59520b
2 changed files with 17 additions and 1 deletions

View File

@ -57,6 +57,14 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#define yyexca c_exca
#define yyerrflag c_errflag
#define yynerrs c_nerrs
#define yyps c_ps
#define yypv c_pv
#define yys c_s
#define yystate c_state
#define yytmp c_tmp
#define yyv c_v
#define yyval c_val
#define yylloc c_lloc
/* Forward decls */
void yyerror ();

View File

@ -37,6 +37,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "frame.h"
#include "expression.h"
#include "language.h"
#include "value.h"
#include "parser-defs.h"
/* These MUST be included in any grammar file!!!!
@ -57,6 +58,14 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#define yyexca m2_exca
#define yyerrflag m2_errflag
#define yynerrs m2_nerrs
#define yyps m2_ps
#define yypv m2_pv
#define yys m2_s
#define yystate m2_state
#define yytmp m2_tmp
#define yyv m2_v
#define yyval m2_val
#define yylloc m2_lloc
/* Forward decl's */
void yyerror ();
@ -653,7 +662,6 @@ parse_number (olen)
register int c,i,ischar=0;
register int base = input_radix;
register int len = olen;
char *err_copy;
int unsigned_p = number_sign == 1 ? 1 : 0;
extern double atof ();