forked from OSchip/llvm-project
parent
6c2d233e7a
commit
973c214ce0
|
@ -35,8 +35,7 @@ void llvm_remove_error_handler(void) {
|
|||
ErrorHandler = 0;
|
||||
}
|
||||
|
||||
void llvm_report_error(const std::string &reason)
|
||||
{
|
||||
void llvm_report_error(const std::string &reason) {
|
||||
if (!ErrorHandler) {
|
||||
errs() << "LLVM ERROR: " << reason << "\n";
|
||||
} else {
|
||||
|
@ -45,8 +44,7 @@ void llvm_report_error(const std::string &reason)
|
|||
exit(1);
|
||||
}
|
||||
|
||||
void llvm_unreachable(void)
|
||||
{
|
||||
void llvm_unreachable(void) {
|
||||
abort();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue