Typo in ForTestCompileBuiltins.

This commit is contained in:
Evgeny Gerashchenko
2012-06-29 16:37:32 +04:00
parent 2420b34469
commit 6a4b6d3f5a
@@ -41,7 +41,7 @@ public class ForTestCompileBuiltins {
ExitCode exitCode = new K2JVMCompiler().exec(
System.err, "-output", classesDir.getPath(), "-src", "./compiler/frontend/src", "-mode", "builtins");
if (exitCode != ExitCode.OK) {
throw new IllegalStateException("jdk headers compilation failed: " + exitCode);
throw new IllegalStateException("builtins compilation failed: " + exitCode);
}
}