From ccb29cd29025570f4a09f964d2b409de29a8149c Mon Sep 17 00:00:00 2001 From: Torok Edwin Date: Sat, 11 Jul 2009 13:10:19 +0000 Subject: Convert more assert(0)+abort() -> LLVM_UNREACHABLE, and abort()/exit() -> llvm_report_error(). llvm-svn: 75363 --- llvm/lib/CodeGen/MachineVerifier.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'llvm/lib/CodeGen/MachineVerifier.cpp') diff --git a/llvm/lib/CodeGen/MachineVerifier.cpp b/llvm/lib/CodeGen/MachineVerifier.cpp index be1396c7a81..e9b90fa0408 100644 --- a/llvm/lib/CodeGen/MachineVerifier.cpp +++ b/llvm/lib/CodeGen/MachineVerifier.cpp @@ -36,6 +36,8 @@ #include "llvm/Target/TargetInstrInfo.h" #include "llvm/Support/Compiler.h" #include "llvm/Support/Debug.h" +#include "llvm/Support/ErrorHandling.h" +#include "llvm/Support/raw_ostream.h" #include using namespace llvm; @@ -219,8 +221,10 @@ MachineVerifier::runOnMachineFunction(MachineFunction &MF) OutFile.close(); if (foundErrors) { - cerr << "\nStopping with " << foundErrors << " machine code errors.\n"; - exit(1); + std::string msg; + raw_string_ostream Msg(msg); + Msg << "\nStopping with " << foundErrors << " machine code errors."; + llvm_report_error(Msg.str()); } return false; // no changes -- cgit v1.2.3