mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-26 20:26:07 +00:00
Implement full support for parsing primary expressions. We can now parse
all of health and voronoi (ignoring directives). We only get 409 lines into 176.gcc though because we don't have binary operators yet: Parsing 176.gcc.llc.s:409: unexpected token in operand list movsbl _arityvec+1(,%edi,8), %eax ^ git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73877 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -99,6 +99,7 @@ static int AsLexInput(const char *ProgName) {
|
||||
case asmtok::Colon: outs() << "Colon\n"; break;
|
||||
case asmtok::Plus: outs() << "Plus\n"; break;
|
||||
case asmtok::Minus: outs() << "Minus\n"; break;
|
||||
case asmtok::Tilde: outs() << "Tilde\n"; break;
|
||||
case asmtok::Slash: outs() << "Slash\n"; break;
|
||||
case asmtok::LParen: outs() << "LParen\n"; break;
|
||||
case asmtok::RParen: outs() << "RParen\n"; break;
|
||||
|
Reference in New Issue
Block a user