basic compiler id hash working

This commit is contained in:
Andrew Kelley
2018-09-09 18:07:11 -04:00
parent b4d5d4d174
commit 173fc842c4
12 changed files with 951 additions and 257 deletions

View File

@@ -27,6 +27,8 @@ const char *err_str(int err) {
case ErrorNegativeDenominator: return "negative denominator";
case ErrorShiftedOutOneBits: return "exact shift shifted out one bits";
case ErrorCCompileErrors: return "C compile errors";
case ErrorEndOfFile: return "end of file";
case ErrorIsDir: return "is directory";
}
return "(invalid error)";
}