diff options
author | William S. Moses <gh@wsmoses.com> | 2021-04-20 21:59:45 -0400 |
---|---|---|
committer | William S. Moses <gh@wsmoses.com> | 2021-04-26 12:43:14 -0400 |
commit | 494e77138c2e53961c43fe6957142d4f90034f98 (patch) | |
tree | b264b2f3c865bfccf74775c1c2351c32ccf05fb7 /llvm/lib/AsmParser/LLLexer.cpp | |
parent | 88b8b88035faf2752b6d9f75e89333526a19b102 (diff) | |
download | llvm-494e77138c2e53961c43fe6957142d4f90034f98.zip llvm-494e77138c2e53961c43fe6957142d4f90034f98.tar.gz llvm-494e77138c2e53961c43fe6957142d4f90034f98.tar.bz2 |
[Lexer] Allow LLLexer to be used as an API
Explose LLVM Lexer for usage externally as an API
Differential Revision: https://reviews.llvm.org/D100920
Diffstat (limited to 'llvm/lib/AsmParser/LLLexer.cpp')
-rw-r--r-- | llvm/lib/AsmParser/LLLexer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/AsmParser/LLLexer.cpp b/llvm/lib/AsmParser/LLLexer.cpp index e9fb082..b882291e 100644 --- a/llvm/lib/AsmParser/LLLexer.cpp +++ b/llvm/lib/AsmParser/LLLexer.cpp @@ -10,7 +10,7 @@ // //===----------------------------------------------------------------------===// -#include "LLLexer.h" +#include "llvm/AsmParser/LLLexer.h" #include "llvm/ADT/APInt.h" #include "llvm/ADT/STLExtras.h" #include "llvm/ADT/StringExtras.h" |