[libcxx-commits] [PATCH] D102763: [LLParser] Remove outdated deplibs
Xuanda Yang via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Fri May 28 05:55:08 PDT 2021
TH3CHARLie updated this revision to Diff 348503.
TH3CHARLie added a comment.
Revert removed test
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D102763/new/
https://reviews.llvm.org/D102763
Files:
llvm/include/llvm/AsmParser/LLParser.h
llvm/lib/AsmParser/LLLexer.cpp
llvm/lib/AsmParser/LLParser.cpp
Index: llvm/lib/AsmParser/LLParser.cpp
===================================================================
--- llvm/lib/AsmParser/LLParser.cpp
+++ llvm/lib/AsmParser/LLParser.cpp
@@ -356,10 +356,6 @@
if (parseModuleAsm())
return true;
break;
- case lltok::kw_deplibs:
- if (parseDepLibs())
- return true;
- break;
case lltok::LocalVarID:
if (parseUnnamedType())
return true;
@@ -459,29 +455,6 @@
return false;
}
-/// toplevelentity
-/// ::= 'deplibs' '=' '[' ']'
-/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
-/// FIXME: Remove in 4.0. Currently parse, but ignore.
-bool LLParser::parseDepLibs() {
- assert(Lex.getKind() == lltok::kw_deplibs);
- Lex.Lex();
- if (parseToken(lltok::equal, "expected '=' after deplibs") ||
- parseToken(lltok::lsquare, "expected '=' after deplibs"))
- return true;
-
- if (EatIfPresent(lltok::rsquare))
- return false;
-
- do {
- std::string Str;
- if (parseStringConstant(Str))
- return true;
- } while (EatIfPresent(lltok::comma));
-
- return parseToken(lltok::rsquare, "expected ']' at end of list");
-}
-
/// parseUnnamedType:
/// ::= LocalVarID '=' 'type' type
bool LLParser::parseUnnamedType() {
Index: llvm/lib/AsmParser/LLLexer.cpp
===================================================================
--- llvm/lib/AsmParser/LLLexer.cpp
+++ llvm/lib/AsmParser/LLLexer.cpp
@@ -543,7 +543,6 @@
KEYWORD(triple);
KEYWORD(source_filename);
KEYWORD(unwind);
- KEYWORD(deplibs); // FIXME: Remove in 4.0.
KEYWORD(datalayout);
KEYWORD(volatile);
KEYWORD(atomic);
Index: llvm/include/llvm/AsmParser/LLParser.h
===================================================================
--- llvm/include/llvm/AsmParser/LLParser.h
+++ llvm/include/llvm/AsmParser/LLParser.h
@@ -301,7 +301,6 @@
bool parseTargetDefinition();
bool parseModuleAsm();
bool parseSourceFileName();
- bool parseDepLibs(); // FIXME: Remove in 4.0.
bool parseUnnamedType();
bool parseNamedType();
bool parseDeclare();
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D102763.348503.patch
Type: text/x-patch
Size: 2103 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20210528/b3e9f8e2/attachment.bin>
More information about the libcxx-commits
mailing list