From: brian Date: Wed, 12 May 2004 04:08:36 +0000 (-0700) Subject: ABS.X fix X-Git-Url: http://git.megacz.com/?p=nestedvm.git;a=commitdiff_plain;h=3dd4a2b74bbc1248f66482f06b14d7fffcf7ac47 ABS.X fix darcs-hash:20040512040836-24bed-c0763a692e735c42e73240fdb7469898dddb59cf.gz --- diff --git a/src/org/ibex/nestedvm/ClassFileCompiler.java b/src/org/ibex/nestedvm/ClassFileCompiler.java index f0b9153..1f6ecd4 100644 --- a/src/org/ibex/nestedvm/ClassFileCompiler.java +++ b/src/org/ibex/nestedvm/ClassFileCompiler.java @@ -1262,13 +1262,7 @@ public class ClassFileCompiler extends Compiler implements org.apache.bcel.Const b1 = a(InstructionFactory.createBranchInstruction(IFGT,null)); a(d ? InstructionConstants.DCONST_0 : InstructionConstants.FCONST_0); - if(d) { - a(InstructionConstants.DUP2_X2); - a(InstructionConstants.POP2); - } else { - a(InstructionConstants.POP); - } - a(InstructionConstants.DSUB); + a(d ? InstructionConstants.DSUB : InstructionConstants.FSUB); b1.setTarget(setDouble(d));