diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2023-06-14 14:16:16 -0700 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2023-06-14 14:16:16 -0700 |
commit | 04c0161c027676119fdc617f5b883dbda97c8549 (patch) | |
tree | 105d274b6c84ee002bda47c980cecad8e1c66e0a /llvm/lib/AsmParser/LLLexer.cpp | |
parent | 7a2fdc685f609730af29e5e969843e9eb71a184c (diff) | |
download | llvm-04c0161c027676119fdc617f5b883dbda97c8549.zip llvm-04c0161c027676119fdc617f5b883dbda97c8549.tar.gz llvm-04c0161c027676119fdc617f5b883dbda97c8549.tar.bz2 |
Revert "[DebugInfo] Always emit `.debug_names` with DWARF 5 for Apple platforms"
This reverts commit e0d57295bf6a3c04f2901d9c70f529d570f48b65 because the
accel-tables-apple.ll test is failing on a few buildbots.
Diffstat (limited to 'llvm/lib/AsmParser/LLLexer.cpp')
-rw-r--r-- | llvm/lib/AsmParser/LLLexer.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/AsmParser/LLLexer.cpp b/llvm/lib/AsmParser/LLLexer.cpp index 7568fd4..23a7b44 100644 --- a/llvm/lib/AsmParser/LLLexer.cpp +++ b/llvm/lib/AsmParser/LLLexer.cpp @@ -944,8 +944,7 @@ lltok::Kind LLLexer::LexIdentifier() { return lltok::EmissionKind; } - if (Keyword == "GNU" || Keyword == "Apple" || Keyword == "None" || - Keyword == "Default") { + if (Keyword == "GNU" || Keyword == "None" || Keyword == "Default") { StrVal.assign(Keyword.begin(), Keyword.end()); return lltok::NameTableKind; } |