From 3dd4a2b74bbc1248f66482f06b14d7fffcf7ac47 Mon Sep 17 00:00:00 2001 From: brian Date: Tue, 11 May 2004 21:08:36 -0700 Subject: [PATCH] ABS.X fix darcs-hash:20040512040836-24bed-c0763a692e735c42e73240fdb7469898dddb59cf.gz --- src/org/ibex/nestedvm/ClassFileCompiler.java | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) 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)); -- 1.7.10.4