Fix parse of bit select in notifier expression,

This commit is contained in:
steve 2006-12-03 04:58:20 +00:00
parent d486b81f23
commit dc8e941260
1 changed files with 5 additions and 2 deletions

View File

@ -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
*/ */
#ifdef HAVE_CVS_IDENT #ifdef HAVE_CVS_IDENT
#ident "$Id: parse.y,v 1.201.2.4 2006/07/10 00:21:52 steve Exp $" #ident "$Id: parse.y,v 1.201.2.5 2006/12/03 04:58:20 steve Exp $"
#endif #endif
# include "config.h" # include "config.h"
@ -2460,7 +2460,10 @@ spec_notifier
| spec_notifier ',' | spec_notifier ','
{ } { }
| spec_notifier ',' identifier | spec_notifier ',' identifier
{ delete $3; { delete $3; }
| spec_notifier ',' identifier '[' expr_primary ']'
{ delete $3;
delete $5;
} }
| IDENTIFIER | IDENTIFIER
{ delete $1; } { delete $1; }