diff options
Diffstat (limited to 'llvm/lib/AsmParser/LLLexer.cpp')
-rw-r--r-- | llvm/lib/AsmParser/LLLexer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/AsmParser/LLLexer.cpp b/llvm/lib/AsmParser/LLLexer.cpp index 23a7b44..7568fd4 100644 --- a/llvm/lib/AsmParser/LLLexer.cpp +++ b/llvm/lib/AsmParser/LLLexer.cpp @@ -944,7 +944,8 @@ lltok::Kind LLLexer::LexIdentifier() { return lltok::EmissionKind; } - if (Keyword == "GNU" || Keyword == "None" || Keyword == "Default") { + if (Keyword == "GNU" || Keyword == "Apple" || Keyword == "None" || + Keyword == "Default") { StrVal.assign(Keyword.begin(), Keyword.end()); return lltok::NameTableKind; } |