Fix respecting of instruction options (misunderstood default action behavior).

This commit is contained in:
Eric Anholt 2006-08-24 14:47:21 -07:00 committed by Damien Lespiau
parent 56c4ccfc19
commit 16324215b2

View File

@ -594,7 +594,10 @@ instoption_list: instoption instoption_list
/* XXX: fill me in. alignctrl, comprctrl, threadctrl, depctrl, maskctrl,
* debugctrl, sendctrl
*/
instoption: ALIGN1 | ALIGN16 | MASK_DISABLE | EOT
instoption: ALIGN1 { $$ = ALIGN1; }
| ALIGN16 { $$ = ALIGN16; }
| MASK_DISABLE { $$ = MASK_DISABLE; }
| EOT { $$ = EOT; }
;
%%