replace abort with _mesa_problem()

This commit is contained in:
Brian Paul 2006-08-29 19:09:57 +00:00
parent 8d675aa637
commit 0aab798a18

View file

@ -569,7 +569,8 @@ int _slang_execute2 (const slang_assembly_file *file, slang_machine *mach)
(GLint) (stack[mach->sp]._float) ? "true" : "false");
break;
default:
assert (0);
_mesa_problem(NULL, "bad slang opcode 0x%x", a->type);
return 0;
}
}