diff options
| author | Felipe de Azevedo Piovezan <fpiovezan@apple.com> | 2025-09-17 17:02:24 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-17 17:02:24 -0700 |
| commit | bb013a4a220d423e64ecadd3f337b7f95368786d (patch) | |
| tree | 75ca1761327d3ec2fbf59d47b50a2d8e592421a5 /lldb/source/Expression/DWARFExpression.cpp | |
| parent | 658bb98e00016680a5157a19c453a1c6f1f909db (diff) | |
Reland "Revert "[lldb] Fix OP_deref evaluation for large integer resu… (#159482)
…lts (#159460)""
The original had an issue on "AArch-less" bots.
Fixed it with some ifdefs around the presence of the AArch ABI plugin.
This reverts commit 1a4685df13282ae5c1d7dce055a71a7130bfab3c.
Diffstat (limited to 'lldb/source/Expression/DWARFExpression.cpp')
| -rw-r--r-- | lldb/source/Expression/DWARFExpression.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/source/Expression/DWARFExpression.cpp b/lldb/source/Expression/DWARFExpression.cpp index 5040351f4975..4f9d6ebf27bf 100644 --- a/lldb/source/Expression/DWARFExpression.cpp +++ b/lldb/source/Expression/DWARFExpression.cpp @@ -909,8 +909,6 @@ static llvm::Error Evaluate_DW_OP_deref(DWARFExpression::Stack &stack, " for DW_OP_deref", pointer_addr), error.takeError()); - if (ABISP abi_sp = process->GetABI()) - pointer_value = abi_sp->FixCodeAddress(pointer_value); stack.back().GetScalar() = pointer_value; stack.back().ClearContext(); } break; |
