diff options
author | Chris Lattner <sabre@nondot.org> | 2009-10-28 03:39:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-10-28 03:39:23 +0000 |
commit | 09d9ef4122414a1a2ec95f52d660d6500f2819d0 (patch) | |
tree | f6c1df9220f5a87d7d0b774d61d41a9fba48af40 /lib/AsmParser/LLLexer.cpp | |
parent | 73050e1c383100d879597f5d4ef8260bb1d6f07c (diff) |
full asmparser support for blockaddress. We can now do:
$ llvm-as foo.ll -d -disable-output
which reads and prints the .ll file. BC encoding is the
next project. Testcase will go in once that works.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85368 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser/LLLexer.cpp')
-rw-r--r-- | lib/AsmParser/LLLexer.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/AsmParser/LLLexer.cpp b/lib/AsmParser/LLLexer.cpp index f95110e57c..1b7c9c6d04 100644 --- a/lib/AsmParser/LLLexer.cpp +++ b/lib/AsmParser/LLLexer.cpp @@ -576,6 +576,7 @@ lltok::Kind LLLexer::LexIdentifier() { KEYWORD(oge); KEYWORD(ord); KEYWORD(uno); KEYWORD(ueq); KEYWORD(une); KEYWORD(x); + KEYWORD(blockaddress); #undef KEYWORD // Keywords for types. |