[llvm] [BPF] Handle unreachable with a kfunc call (PR #131731)

via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 21 08:48:16 PDT 2025


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 f01b56ffb3bee6606063ab4e6e8883eb2e4a48ea da34dcc6884dc8e18ca542167be1fa78c43ec1e8 --extensions cpp,h -- llvm/lib/Target/BPF/BPF.h llvm/lib/Target/BPF/BPFISelLowering.cpp llvm/lib/Target/BPF/BPFISelLowering.h llvm/lib/Target/BPF/BPFTargetMachine.cpp llvm/lib/Target/BPF/BTFDebug.cpp
``````````

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/llvm/lib/Target/BPF/BTFDebug.cpp b/llvm/lib/Target/BPF/BTFDebug.cpp
index 7ceb1bb3fe..126b7f571f 100644
--- a/llvm/lib/Target/BPF/BTFDebug.cpp
+++ b/llvm/lib/Target/BPF/BTFDebug.cpp
@@ -1635,8 +1635,8 @@ void BTFDebug::endModule() {
     auto TypeEntry =
         std::make_unique<BTFTypeFuncProto>(nullptr, 0, FuncArgNames);
     uint32_t TypeId = addType(std::move(TypeEntry));
-    auto FuncTypeEntry = std::make_unique<BTFTypeFunc>(
-        BPF_UNREACHABLE, TypeId, BTF::FUNC_EXTERN);
+    auto FuncTypeEntry = std::make_unique<BTFTypeFunc>(BPF_UNREACHABLE, TypeId,
+                                                       BTF::FUNC_EXTERN);
     uint32_t FuncId = addType(std::move(FuncTypeEntry));
 
     StringRef SecName(".ksyms");

``````````

</details>


https://github.com/llvm/llvm-project/pull/131731


More information about the llvm-commits mailing list