From: twisti Date: Sun, 9 Nov 2003 19:41:04 +0000 (+0000) Subject: Print can't find method and exit. X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=02a8259b3a620fa4e4180990b8ffc5b54978483a;p=cacao.git Print can't find method and exit. --- diff --git a/jit/i386/methodtable.c b/jit/i386/methodtable.c index c25a3865c..0fb32455a 100644 --- a/jit/i386/methodtable.c +++ b/jit/i386/methodtable.c @@ -27,7 +27,7 @@ Authores: Christian Thalinger - $Id: methodtable.c 561 2003-11-02 23:39:06Z twisti $ + $Id: methodtable.c 587 2003-11-09 19:41:04Z twisti $ */ @@ -92,8 +92,9 @@ u1 *findmethod(u1 *pos) mte = mte->next; } } - - return NULL; + + printf("can't find method with eip=%p\n", pos); + exit(-1); }