summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-mc/AsmLexer.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-06-25 21:56:11 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-06-25 21:56:11 +0000
commit2d2ee150eb48229140ef5fd669dc00d835b648ab (patch)
tree7242d3cc041819a7f2447b6a67dec5429cff6369 /llvm/tools/llvm-mc/AsmLexer.cpp
parentbf61749b4756b6a4907976a98c1940e72d870139 (diff)
downloadbcm5719-llvm-2d2ee150eb48229140ef5fd669dc00d835b648ab.tar.gz
bcm5719-llvm-2d2ee150eb48229140ef5fd669dc00d835b648ab.zip
MC: Parse .set and assignments.
llvm-svn: 74208
Diffstat (limited to 'llvm/tools/llvm-mc/AsmLexer.cpp')
-rw-r--r--llvm/tools/llvm-mc/AsmLexer.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/tools/llvm-mc/AsmLexer.cpp b/llvm/tools/llvm-mc/AsmLexer.cpp
index 186a0585522..db86825f3d2 100644
--- a/llvm/tools/llvm-mc/AsmLexer.cpp
+++ b/llvm/tools/llvm-mc/AsmLexer.cpp
@@ -262,6 +262,7 @@ asmtok::TokKind AsmLexer::LexToken() {
case '*': return asmtok::Star;
case ',': return asmtok::Comma;
case '$': return asmtok::Dollar;
+ case '=': return asmtok::Equal;
case '|': return asmtok::Pipe;
case '^': return asmtok::Caret;
case '&': return asmtok::Amp;
OpenPOWER on IntegriCloud