diff options
-rw-r--r-- | src/mesa/shader/slang/slang_execute.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/shader/slang/slang_execute.c b/src/mesa/shader/slang/slang_execute.c index e5beb509f0..bdf3cee257 100644 --- a/src/mesa/shader/slang/slang_execute.c +++ b/src/mesa/shader/slang/slang_execute.c @@ -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; } } |