diff options
Diffstat (limited to 'tools/llvm-mc/llvm-mc.cpp')
-rw-r--r-- | tools/llvm-mc/llvm-mc.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/llvm-mc/llvm-mc.cpp b/tools/llvm-mc/llvm-mc.cpp index 20f353ca67..7a179e83ff 100644 --- a/tools/llvm-mc/llvm-mc.cpp +++ b/tools/llvm-mc/llvm-mc.cpp @@ -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; |