i965: Print conditional mod in dump_instruction().
Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
@@ -2831,7 +2831,7 @@ fs_visitor::dump_instruction(backend_instruction *be_inst)
|
||||
if (inst->saturate)
|
||||
printf(".sat");
|
||||
if (inst->conditional_mod) {
|
||||
printf(".cmod");
|
||||
printf("%s", conditional_modifier[inst->conditional_mod]);
|
||||
if (!inst->predicate &&
|
||||
(brw->gen < 5 || (inst->opcode != BRW_OPCODE_SEL &&
|
||||
inst->opcode != BRW_OPCODE_IF &&
|
||||
|
||||
@@ -1109,7 +1109,11 @@ vec4_visitor::dump_instruction(backend_instruction *be_inst)
|
||||
{
|
||||
vec4_instruction *inst = (vec4_instruction *)be_inst;
|
||||
|
||||
printf("%s ", brw_instruction_name(inst->opcode));
|
||||
printf("%s", brw_instruction_name(inst->opcode));
|
||||
if (inst->conditional_mod) {
|
||||
printf("%s", conditional_modifier[inst->conditional_mod]);
|
||||
}
|
||||
printf(" ");
|
||||
|
||||
switch (inst->dst.file) {
|
||||
case GRF:
|
||||
|
||||
Reference in New Issue
Block a user