dfa: honor control transfer instructions when performing auxiliary analyses (IDEA-162557)

This commit is contained in:
peter
2016-10-19 19:27:57 +02:00
parent 84e361cf67
commit 87a28d8d6e
7 changed files with 54 additions and 23 deletions
@@ -0,0 +1,12 @@
class Bar {
void repeatUntilPassesInSmartMode(final Runnable r) {
while (true) {
try {
r.run();
return;
}
catch (Throwable e) {
}
}
}
}