core: use SSA representation for instruction arguments

This commit is contained in:
Skylot
2014-04-26 17:41:12 +04:00
parent 96db1c2479
commit e49ba61917
80 changed files with 1796 additions and 951 deletions
@@ -29,8 +29,9 @@ public class RunTests {
Collections.sort(clsList);
int passed = 0;
for (String cls : clsList) {
if (runTest(cls))
if (runTest(cls)) {
passed++;
}
}
int failed = clsList.size() - passed;
System.err.println("---");
@@ -67,9 +68,9 @@ public class RunTests {
+ (pass ? "PASS" : "FAIL") + "\t"
+ clsName
+ (msg == null ? "" : "\t - " + msg));
if (exc != null)
if (exc != null) {
exc.printStackTrace();
}
return pass;
} catch (ClassNotFoundException e) {
System.err.println("Class '" + clsName + "' not found");