One more pointer stored into a 32 bits int remove in mvl_parse.

This commit is contained in:
Jean-Paul Chaput 2018-03-28 18:03:44 +02:00
parent c5431990d5
commit bf8fe82403
3 changed files with 18 additions and 13 deletions

View File

@ -15,6 +15,8 @@
#include "mvl_parse.h" #include "mvl_parse.h"
#include "mvl_utdef.h" #include "mvl_utdef.h"
int yydebug = 1;
extern void mvl_y_restart(); extern void mvl_y_restart();
void vhdlloadlofig (pt_lofig, figname, mode) void vhdlloadlofig (pt_lofig, figname, mode)

View File

@ -21,6 +21,7 @@
#include "gen_generic.h" #include "gen_generic.h"
extern int yydebug = 1;
extern int yylex (); extern int yylex ();
extern void yyerror (); extern void yyerror ();
@ -42,6 +43,8 @@ static struct logen MVL_LOGEN;
static long base ; static long base ;
%} %}
/* %define parse.trace */
%union %union
{ {
long valu; long valu;

View File

@ -28,5 +28,5 @@ struct dct_recrd
short fd4_val; short fd4_val;
short fd5_val; short fd5_val;
short fd6_val; short fd6_val;
int pnt_val; long pnt_val;
}; };