[Lldb-commits] [lldb] [lldb] Store proper integer bitwidth in Scalar Type (PR #81451)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Feb 12 00:48:25 PST 2024
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff 7f40c5cc4e15a0a67b031f13370afc342a5dc14b 51347e2de532261cfe980b299baeceb7747b7d48 -- lldb/source/Expression/DWARFExpression.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/lldb/source/Expression/DWARFExpression.cpp b/lldb/source/Expression/DWARFExpression.cpp
index 1546612be3..6839e05bb1 100644
--- a/lldb/source/Expression/DWARFExpression.cpp
+++ b/lldb/source/Expression/DWARFExpression.cpp
@@ -867,7 +867,7 @@ static Scalar DerefSizeExtractDataHelper(uint8_t *addr_bytes,
case 8:
return addr_data.GetU64(&addr_data_offset);
default:
- return addr_data.GetAddress(&addr_data_offset);
+ return addr_data.GetAddress(&addr_data_offset);
}
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/81451
More information about the lldb-commits
mailing list