remove debug abort() calls

This commit is contained in:
Brian
2007-03-26 16:01:58 -06:00
parent 52cc32378c
commit 813a0e11f1
4 changed files with 10 additions and 14 deletions
+6 -8
View File
@@ -681,11 +681,8 @@ slang_substitute(slang_assemble_ctx *A, slang_operation *oper,
GLuint i;
v = _slang_locate_variable(oper->locals, id, GL_TRUE);
if (!v) {
printf("var %s not found!\n", (char *) oper->a_id);
_slang_print_var_scope(oper->locals, 6);
abort();
break;
_mesa_problem(NULL, "var %s not found!\n", (char *) oper->a_id);
return;
}
/* look for a substitution */
@@ -1134,7 +1131,8 @@ make_writemask(const char *field)
mask |= WRITEMASK_W;
break;
default:
abort();
_mesa_problem(NULL, "invalid writemask in make_writemask()");
return 0;
}
field++;
}
@@ -2619,8 +2617,8 @@ _slang_gen_operation(slang_assemble_ctx * A, slang_operation *oper)
return new_node0(IR_NOP);
default:
printf("Unhandled node type %d\n", oper->type);
abort();
_mesa_problem(NULL, "bad node type %d in _slang_gen_operation",
oper->type);
return new_node0(IR_NOP);
}
-1
View File
@@ -1535,7 +1535,6 @@ emit(slang_emit_info *emitInfo, slang_ir_node *n)
default:
_mesa_problem(NULL, "Unexpected IR opcode in emit()\n");
abort();
}
return NULL;
}
+4 -3
View File
@@ -208,10 +208,11 @@ link_uniform_vars(struct gl_shader_program *shProg, struct gl_program *prog)
j = _mesa_add_sampler(shProg->Uniforms, p->Name);
break;
default:
abort();
_mesa_problem(NULL, "bad parameter type in link_uniform_vars()");
return GL_FALSE;
}
}
ASSERT(j >= 0);
size = p->Size;
@@ -544,7 +545,7 @@ _slang_link(GLcontext *ctx,
if (!_slang_resolve_attributes(shProg, &shProg->VertexProgram->Base)) {
/*goto cleanup;*/
_mesa_problem(ctx, "_slang_resolve_attributes() failed");
abort(); /* XXX fix */
return;
}
}
-2
View File
@@ -274,10 +274,8 @@ slang_print_tree(const slang_operation *op, int indent)
*/
}
else {
abort();
spaces(indent);
printf("DECL %s (anonymous variable!!!!)\n", (char *) op->a_id);
/*abort();*/
}
}
break;