Print can't find method and exit.
authortwisti <none@none>
Sun, 9 Nov 2003 19:41:04 +0000 (19:41 +0000)
committertwisti <none@none>
Sun, 9 Nov 2003 19:41:04 +0000 (19:41 +0000)
jit/i386/methodtable.c

index c25a3865c3968cba321ac1f93645380cac87b09b..0fb32455a65066529b9ee6ba3e4bbcc80439b214 100644 (file)
@@ -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);
 }