assembler: Add support for the SENDC instruction.

Reviewed-by: Damien Lespiau <damien.lespiau@intel.com>
This commit is contained in:
Matt Turner
2013-04-29 10:58:26 -07:00
parent 7fcd94b286
commit 160feafa2d
2 changed files with 13 additions and 8 deletions
+1
View File
@@ -129,6 +129,7 @@ yylval.integer = BRW_CHANNEL_W;
"subb" { yylval.integer = BRW_OPCODE_SUBB; return SUBB; }
"send" { yylval.integer = BRW_OPCODE_SEND; return SEND; }
"sendc" { yylval.integer = BRW_OPCODE_SENDC; return SENDC; }
"nop" { yylval.integer = BRW_OPCODE_NOP; return NOP; }
"jmpi" { yylval.integer = BRW_OPCODE_JMPI; return JMPI; }
"if" { yylval.integer = BRW_OPCODE_IF; return IF; }