Assertions that throw InternalCompilerErrors.

This commit is contained in:
Christian 2014-12-17 16:23:18 +01:00
parent a6fd19c8f3
commit 80b8db4f17

View File

@ -311,7 +311,8 @@ bool CommandLineInterface::processInput()
} }
catch (InternalCompilerError const& exception) catch (InternalCompilerError const& exception)
{ {
SourceReferenceFormatter::printExceptionInformation(cerr, exception, "Internal compiler error", m_compiler); cerr << "Internal compiler error during compilation:" << endl
<< boost::diagnostic_information(exception);
return false; return false;
} }
catch (Exception const& exception) catch (Exception const& exception)