summaryrefslogtreecommitdiff
path: root/vaporize/LIRDict.java
diff options
context:
space:
mode:
Diffstat (limited to 'vaporize/LIRDict.java')
-rw-r--r--vaporize/LIRDict.java10
1 files changed, 0 insertions, 10 deletions
diff --git a/vaporize/LIRDict.java b/vaporize/LIRDict.java
index 50c79b0..30bfed3 100644
--- a/vaporize/LIRDict.java
+++ b/vaporize/LIRDict.java
@@ -84,14 +84,4 @@ public class LIRDict {
return this.spilled_num;
}
- private int subOneLine(int i) {
- int ret = i - 1;
-
- CFGNode n = cfg.getNode(new Integer(ret));
- if (n != null && n.getInstruction() instanceof VCodeLabel)
- --ret;
-
- return ret;
- }
-
}