forked from OSchip/llvm-project
add some of the new tokens, others are still missing.
llvm-svn: 74595
This commit is contained in:
parent
fc35841077
commit
e4dfc89615
|
@ -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