add string literals.
[oota-llvm.git] / tools / llvm-mc / llvm-mc.cpp
index 20f353ca670923461ec8fe339a1f6e00744f1498..7a179e83ff6a66ad71a11adf37ee4fcd760b8d97 100644 (file)
@@ -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;