mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-23 00:24:11 -08:00
This commit is contained in:
parent
4a3e11d1af
commit
9bdd2f6020
|
@ -41,6 +41,9 @@ class InterferenceGraphBuilder {
|
||||||
for (BasicBlock succ : succExtractor.getTargets()) {
|
for (BasicBlock succ : succExtractor.getTargets()) {
|
||||||
liveOut.or(liveness.liveIn(succ.getIndex()));
|
liveOut.or(liveness.liveIn(succ.getIndex()));
|
||||||
}
|
}
|
||||||
|
for (TryCatchBlock tryCatch : block.getTryCatchBlocks()) {
|
||||||
|
liveOut.or(liveness.liveIn(tryCatch.getHandler().getIndex()));
|
||||||
|
}
|
||||||
live.clear();
|
live.clear();
|
||||||
for (int j = 0; j < liveOut.length(); ++j) {
|
for (int j = 0; j < liveOut.length(); ++j) {
|
||||||
if (liveOut.get(j)) {
|
if (liveOut.get(j)) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user