add some of the new tokens, others are still missing.

llvm-svn: 74595
This commit is contained in:
Chris Lattner 2009-07-01 06:36:49 +00:00
parent fc35841077
commit e4dfc89615
1 changed files with 17 additions and 10 deletions

View File

@ -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();