summaryrefslogtreecommitdiffstats
path: root/llvm/lib/AsmParser
diff options
context:
space:
mode:
authorMarkus Lavin <markus.lavin@ericsson.com>2019-03-19 09:17:28 +0000
committerMarkus Lavin <markus.lavin@ericsson.com>2019-03-19 09:17:28 +0000
commitad78768d5933bfa50009e8b6f84150291a8aba8f (patch)
tree1a90ef53cc92f803791ebeaa3169aae516048b52 /llvm/lib/AsmParser
parentd2f2f33ef2d071ba535e57b1637ebd9cc3206d51 (diff)
downloadbcm5719-llvm-ad78768d5933bfa50009e8b6f84150291a8aba8f.tar.gz
bcm5719-llvm-ad78768d5933bfa50009e8b6f84150291a8aba8f.zip
Revert "[DebugInfo] Introduce DW_OP_LLVM_convert"
This reverts commit 1cf4b593a7ebd666fc6775f3bd38196e8e65fafe. Build bots found failing tests not detected locally. Failing Tests (3): LLVM :: DebugInfo/Generic/convert-debugloc.ll LLVM :: DebugInfo/Generic/convert-inlined.ll LLVM :: DebugInfo/Generic/convert-linked.ll llvm-svn: 356444
Diffstat (limited to 'llvm/lib/AsmParser')
-rw-r--r--llvm/lib/AsmParser/LLParser.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/llvm/lib/AsmParser/LLParser.cpp b/llvm/lib/AsmParser/LLParser.cpp
index 71315f3c0fb..5a875fee07b 100644
--- a/llvm/lib/AsmParser/LLParser.cpp
+++ b/llvm/lib/AsmParser/LLParser.cpp
@@ -4838,15 +4838,6 @@ bool LLParser::ParseDIExpression(MDNode *&Result, bool IsDistinct) {
return TokError(Twine("invalid DWARF op '") + Lex.getStrVal() + "'");
}
- if (Lex.getKind() == lltok::DwarfAttEncoding) {
- if (unsigned Op = dwarf::getAttributeEncoding(Lex.getStrVal())) {
- Lex.Lex();
- Elements.push_back(Op);
- continue;
- }
- return TokError(Twine("invalid DWARF attribute encoding '") + Lex.getStrVal() + "'");
- }
-
if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
return TokError("expected unsigned integer");
OpenPOWER on IntegriCloud