* builtin_throw: Don't pass line to builtin_trace_exception.
authortwisti <none@none>
Sat, 24 Sep 2005 22:52:44 +0000 (22:52 +0000)
committertwisti <none@none>
Sat, 24 Sep 2005 22:52:44 +0000 (22:52 +0000)
src/vm/jit/intrp/engine.c

index 9406797e98e1d2538b554105e4f930dac4927437..aa826062f07ba9b6c7cae7708d825c69bee2d67c 100644 (file)
@@ -323,7 +323,7 @@ Inst *builtin_throw(Inst *ip, java_objectheader *o, Cell *fp, Cell **new_spp, Ce
          ex = (exceptionentry *) (((u1 *) f) + ExTableStart);
          exceptiontablelength = *((s4 *) (((u1 *) f) + ExTableSize));
 
-         builtin_trace_exception(o, m, ip, 0, 0);
+         builtin_trace_exception(o, m, ip, 1);
 
          for (i = 0; i < exceptiontablelength; i++) {
                  ex--;