From 01d4915520274ad3fd8410ad8ea1f6ed678db2a7 Mon Sep 17 00:00:00 2001 From: jochen Date: Sat, 20 Mar 1999 00:32:56 +0000 Subject: [PATCH] removed destAddr git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@460 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/flow/Jump.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/jode/jode/flow/Jump.java b/jode/jode/flow/Jump.java index 02b7247..eaf30c8 100644 --- a/jode/jode/flow/Jump.java +++ b/jode/jode/flow/Jump.java @@ -29,11 +29,6 @@ public class Jump { * The destination block of this jump, null if not known, or illegal. */ FlowBlock destination; - /** - * The destination address, in case the destination block is not yet - * known. - */ - int destAddr; /** * The jumps in a flow block, that have the same destination, are @@ -65,12 +60,6 @@ public class Jump { */ VariableStack stackMap; - public Jump (int destAddr) { - this.destAddr = destAddr; - kill = new VariableSet(); - gen = new VariableSet(); - } - public Jump (FlowBlock dest) { this.destination = dest; kill = new VariableSet(); @@ -78,7 +67,6 @@ public class Jump { } public Jump (Jump jump) { - destAddr = jump.destAddr; destination = jump.destination; next = jump.next; jump.next = this;