diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp index d7b2579d387..6469f71203f 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp @@ -225,6 +225,11 @@ static const char *rcprsqOpStr[] = "", "64h" }; +static const char *emitOpStr[] = +{ + "", "restart" +}; + static const char *DataTypeStr[] = { "-", @@ -590,6 +595,10 @@ void Instruction::print() const if (subOp < ARRAY_SIZE(rcprsqOpStr)) PRINT("%s ", rcprsqOpStr[subOp]); break; + case OP_EMIT: + if (subOp < ARRAY_SIZE(emitOpStr)) + PRINT("%s ", emitOpStr[subOp]); + break; default: if (subOp) PRINT("(SUBOP:%u) ", subOp);