remove default fatel handler

This commit is contained in:
Ivan 2017-10-14 15:46:23 +03:00
parent afe4b9f680
commit b534e59fb8
2 changed files with 1 additions and 7 deletions

View file

@ -18,6 +18,7 @@ void fatal(const Context &context, const std::string &reason)
}
else {
fprintf(stderr, "Runtime compiler fatal: %s\n", reason.c_str());
fflush(stderr);
abort();
}
}