diff options
author | Stephen Tozer <Stephen.Tozer@Sony.com> | 2021-03-04 11:59:21 +0000 |
---|---|---|
committer | Stephen Tozer <Stephen.Tozer@Sony.com> | 2021-03-04 11:59:21 +0000 |
commit | d2000b45d033c06dc7973f59909a0ad12887ff51 (patch) | |
tree | de87f2e697943ac5f1b6dc3fafac2ba605dcf61c /llvm/lib/BinaryFormat/Dwarf.cpp | |
parent | d07f106f4a48b6e941266525b6f7177834d7b74e (diff) | |
download | llvm-d2000b45d033c06dc7973f59909a0ad12887ff51.zip llvm-d2000b45d033c06dc7973f59909a0ad12887ff51.tar.gz llvm-d2000b45d033c06dc7973f59909a0ad12887ff51.tar.bz2 |
Revert "[DebugInfo] Add new instruction and DIExpression operator for variadic debug values"
This reverts commit d07f106f4a48b6e941266525b6f7177834d7b74e.
Diffstat (limited to 'llvm/lib/BinaryFormat/Dwarf.cpp')
-rw-r--r-- | llvm/lib/BinaryFormat/Dwarf.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/BinaryFormat/Dwarf.cpp b/llvm/lib/BinaryFormat/Dwarf.cpp index c884257..e474736 100644 --- a/llvm/lib/BinaryFormat/Dwarf.cpp +++ b/llvm/lib/BinaryFormat/Dwarf.cpp @@ -153,8 +153,6 @@ StringRef llvm::dwarf::OperationEncodingString(unsigned Encoding) { return "DW_OP_LLVM_entry_value"; case DW_OP_LLVM_implicit_pointer: return "DW_OP_LLVM_implicit_pointer"; - case DW_OP_LLVM_arg: - return "DW_OP_LLVM_arg"; } } @@ -168,7 +166,6 @@ unsigned llvm::dwarf::getOperationEncoding(StringRef OperationEncodingString) { .Case("DW_OP_LLVM_tag_offset", DW_OP_LLVM_tag_offset) .Case("DW_OP_LLVM_entry_value", DW_OP_LLVM_entry_value) .Case("DW_OP_LLVM_implicit_pointer", DW_OP_LLVM_implicit_pointer) - .Case("DW_OP_LLVM_arg", DW_OP_LLVM_arg) .Default(0); } |