mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
add some of the new tokens, others are still missing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74595 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0eebb0543f
commit
87380cb0e0
@ -109,6 +109,13 @@ static int AsLexInput(const char *ProgName) {
|
||||
case asmtok::Star: outs() << "Star\n"; break;
|
||||
case asmtok::Comma: outs() << "Comma\n"; break;
|
||||
case asmtok::Dollar: outs() << "Dollar\n"; break;
|
||||
case asmtok::Equal: outs() << "Equal\n"; break;
|
||||
case asmtok::EqualEqual: outs() << "EqualEqual\n"; break;
|
||||
case asmtok::Pipe: outs() << "Pipe\n"; break;
|
||||
case asmtok::PipePipe: outs() << "PipePipe\n"; break;
|
||||
case asmtok::Caret: outs() << "Caret\n"; break;
|
||||
case asmtok::Amp: outs() << "Amp\n"; break;
|
||||
case asmtok::AmpAmp: outs() << "AmpAmp\n"; break;
|
||||
}
|
||||
|
||||
Tok = Lexer.Lex();
|
||||
|
Loading…
Reference in New Issue
Block a user