konsoletyper 2014-10-25 13:20:41 +04:00
parent 4a3e11d1af
commit 9bdd2f6020

View File

@ -41,6 +41,9 @@ class InterferenceGraphBuilder {
for (BasicBlock succ : succExtractor.getTargets()) {
liveOut.or(liveness.liveIn(succ.getIndex()));
}
for (TryCatchBlock tryCatch : block.getTryCatchBlocks()) {
liveOut.or(liveness.liveIn(tryCatch.getHandler().getIndex()));
}
live.clear();
for (int j = 0; j < liveOut.length(); ++j) {
if (liveOut.get(j)) {