mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-13 08:25:27 +00:00
add string literals.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73858 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -82,6 +82,9 @@ static int AssembleInput(const char *ProgName) {
|
||||
case asmtok::Register:
|
||||
outs() << "register: " << Lexer.getCurStrVal() << '\n';
|
||||
break;
|
||||
case asmtok::String:
|
||||
outs() << "string: " << Lexer.getCurStrVal() << '\n';
|
||||
break;
|
||||
case asmtok::IntVal:
|
||||
outs() << "int: " << Lexer.getCurIntVal() << '\n';
|
||||
break;
|
||||
|
Reference in New Issue
Block a user