Removed the unused ASSERT()-related code and changed a warning where BREAKPOINT() was used to an error

svn-id: r44041
This commit is contained in:
Filippos Karapetis 2009-09-12 17:31:29 +00:00
parent 5e57474eb9
commit 358b5649ce
4 changed files with 1 additions and 25 deletions

View file

@ -462,10 +462,6 @@ ExecStack *add_exec_stack_entry(EngineState *s, reg_t pc, StackPtr sp, reg_t obj
# define kernel_matches_signature(a, b, c, d) 1
#endif
void vm_handle_fatal_error(EngineState *s, int line, const char *file) {
error("Fatal VM error in %s, L%d; aborting...", file, line);
}
static reg_t pointer_add(EngineState *s, reg_t base, int offset) {
MemObject *mobj = s->segMan->getMemObject(base.segment);