Jit code style fixes (#2741)

This commit is contained in:
Ivan Butygin 2018-06-10 15:16:35 +03:00 committed by GitHub
parent 46e6b8f681
commit 9c048c635c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 53 additions and 45 deletions

View file

@ -22,7 +22,7 @@ void fatal(const Context &context, const std::string &reason) {
if (nullptr != context.fatalHandler) {
context.fatalHandler(context.fatalHandlerData, reason.c_str());
} else {
fprintf(stderr, "Runtime compiler fatal: %s\n", reason.c_str());
fprintf(stderr, "Dynamic compiler fatal: %s\n", reason.c_str());
fflush(stderr);
abort();
}