From efb4e0241baee84e80c4f2a52b323d63c0933036 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Mon, 21 Apr 2008 11:31:10 -0600 Subject: [PATCH] do all java->native class via Compiler::indirectCall to ensure we can always make an accurate stack trace (part 2) --- src/compile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compile.cpp b/src/compile.cpp index 5702ca48d6..360cf866b4 100644 --- a/src/compile.cpp +++ b/src/compile.cpp @@ -2181,7 +2181,7 @@ compile(MyThread* t, Frame* initialFrame, unsigned ip, Operand* a = frame->popLong(); c->indirectCall - (c->constant(reinterpret_cast(negateDouble)), 0, 2, 0, a); + (c->constant(reinterpret_cast(negateDouble)), 2, 0, a); c->release(a); Operand* result = c->result8();