Parse combinational event delay.
This commit is contained in:
parent
4bb91c4f98
commit
912749342c
7
parse.y
7
parse.y
|
|
@ -19,7 +19,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||||
*/
|
*/
|
||||||
#if !defined(WINNT) && !defined(macintosh)
|
#if !defined(WINNT) && !defined(macintosh)
|
||||||
#ident "$Id: parse.y,v 1.142 2001/12/30 21:32:03 steve Exp $"
|
#ident "$Id: parse.y,v 1.143 2001/12/31 05:23:13 steve Exp $"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
# include "config.h"
|
# include "config.h"
|
||||||
|
|
@ -2246,6 +2246,11 @@ statement
|
||||||
$$ = tmp;
|
$$ = tmp;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
| '@' '*' statement_opt
|
||||||
|
{ yyerror(@2, "sorry: Combinational event control "
|
||||||
|
"is not supported yet.");
|
||||||
|
$$ = $3;
|
||||||
|
}
|
||||||
| lpvalue '=' expression ';'
|
| lpvalue '=' expression ';'
|
||||||
{ PAssign*tmp = new PAssign($1,$3);
|
{ PAssign*tmp = new PAssign($1,$3);
|
||||||
tmp->set_file(@1.text);
|
tmp->set_file(@1.text);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue