[Lldb-commits] [lldb] [llvm] [Obj2Yaml] Add support for minidump generation with 64b memory ranges. (PR #101272)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Jul 30 18:09:26 PDT 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 0891ccc0c68c35e17562c752955788f08054bcdb 9be9a32f57c5bd516eb5e64282ed71292a78c27a --extensions h,cpp -- llvm/include/llvm/BinaryFormat/Minidump.h llvm/include/llvm/Object/Minidump.h llvm/include/llvm/ObjectYAML/MinidumpYAML.h llvm/lib/Object/Minidump.cpp llvm/lib/ObjectYAML/MinidumpEmitter.cpp llvm/lib/ObjectYAML/MinidumpYAML.cpp llvm/tools/obj2yaml/minidump2yaml.cpp llvm/tools/obj2yaml/obj2yaml.h llvm/unittests/ObjectYAML/MinidumpYAMLTest.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/include/llvm/ObjectYAML/MinidumpYAML.h b/llvm/include/llvm/ObjectYAML/MinidumpYAML.h
index 7f7924b920..8867c2ce3b 100644
--- a/llvm/include/llvm/ObjectYAML/MinidumpYAML.h
+++ b/llvm/include/llvm/ObjectYAML/MinidumpYAML.h
@@ -119,7 +119,7 @@ struct Memory64ListStream
explicit Memory64ListStream(
std::vector<detail::ParsedMemory64Descriptor> Entries = {})
- : ListStream(Entries){};
+ : ListStream(Entries) {};
};
/// ExceptionStream minidump stream.
``````````
</details>
https://github.com/llvm/llvm-project/pull/101272
More information about the lldb-commits
mailing list