diff options
Diffstat (limited to 'src/mesa/drivers/dri/i965')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vec4_emit.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4_emit.cpp b/src/mesa/drivers/dri/i965/brw_vec4_emit.cpp index b911983c0ac..a2a5975c6b2 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4_emit.cpp +++ b/src/mesa/drivers/dri/i965/brw_vec4_emit.cpp @@ -641,11 +641,12 @@ vec4_visitor::generate_vs_instruction(vec4_instruction *instruction, default: if (inst->opcode < (int) ARRAY_SIZE(opcode_descs)) { - fail("unsupported opcode in `%s' in VS\n", - opcode_descs[inst->opcode].name); + _mesa_problem(ctx, "Unsupported opcode in `%s' in VS\n", + opcode_descs[inst->opcode].name); } else { - fail("Unsupported opcode %d in VS", inst->opcode); + _mesa_problem(ctx, "Unsupported opcode %d in VS", inst->opcode); } + abort(); } } |