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/LLToken.h | |
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/LLToken.h')
-rw-r--r-- | lib/AsmParser/LLToken.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AsmParser/LLToken.h b/lib/AsmParser/LLToken.h index d6efaf4d44..797c32ea67 100644 --- a/lib/AsmParser/LLToken.h +++ b/lib/AsmParser/LLToken.h @@ -117,7 +117,7 @@ namespace lltok { kw_malloc, kw_alloca, kw_free, kw_load, kw_store, kw_getelementptr, kw_extractelement, kw_insertelement, kw_shufflevector, kw_getresult, - kw_extractvalue, kw_insertvalue, + kw_extractvalue, kw_insertvalue, kw_blockaddress, // Unsigned Valued tokens (UIntVal). GlobalID, // @42 |