mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-26 05:25:47 +00:00
Make SMDiagnostic a little more sane. Instead of passing around note/warning/error as a
string, pass it around as an enum. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142107 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -100,7 +100,7 @@ void LLVMContext::emitError(unsigned LocCookie, StringRef ErrorStr) {
|
||||
}
|
||||
|
||||
// If we do have an error handler, we can report the error and keep going.
|
||||
SMDiagnostic Diag("", "error: " + ErrorStr.str());
|
||||
SMDiagnostic Diag("", SourceMgr::DK_Error, ErrorStr.str());
|
||||
|
||||
pImpl->InlineAsmDiagHandler(Diag, pImpl->InlineAsmDiagContext, LocCookie);
|
||||
}
|
||||
|
Reference in New Issue
Block a user