mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-11 09:56:22 +00:00
Fix respecting of instruction options (misunderstood default action behavior).
This commit is contained in:
parent
56c4ccfc19
commit
16324215b2
@ -594,7 +594,10 @@ instoption_list: instoption instoption_list
|
|||||||
/* XXX: fill me in. alignctrl, comprctrl, threadctrl, depctrl, maskctrl,
|
/* XXX: fill me in. alignctrl, comprctrl, threadctrl, depctrl, maskctrl,
|
||||||
* debugctrl, sendctrl
|
* debugctrl, sendctrl
|
||||||
*/
|
*/
|
||||||
instoption: ALIGN1 | ALIGN16 | MASK_DISABLE | EOT
|
instoption: ALIGN1 { $$ = ALIGN1; }
|
||||||
|
| ALIGN16 { $$ = ALIGN16; }
|
||||||
|
| MASK_DISABLE { $$ = MASK_DISABLE; }
|
||||||
|
| EOT { $$ = EOT; }
|
||||||
;
|
;
|
||||||
|
|
||||||
%%
|
%%
|
||||||
|
Loading…
x
Reference in New Issue
Block a user