mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-21 02:24:22 +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:
@ -267,7 +267,8 @@ static int AsLexInput(const char *ProgName) {
|
||||
|
||||
switch (Tok.getKind()) {
|
||||
default:
|
||||
SrcMgr.PrintMessage(Lexer.getLoc(), "unknown token", "warning");
|
||||
SrcMgr.PrintMessage(Lexer.getLoc(), SourceMgr::DK_Warning,
|
||||
"unknown token");
|
||||
Error = true;
|
||||
break;
|
||||
case AsmToken::Error:
|
||||
|
Reference in New Issue
Block a user