[llvm] [CrossDSO CFI] Make sure __cfi_check has BTI attribute. (PR #131224)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 14:46:32 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 aa612f3ade66b5dd3e95d028c0345a94c38e1ff8 b0a9d4bd178b39f1e85a0c2e613b5ac88523126e --extensions cpp -- llvm/lib/Transforms/IPO/CrossDSOCFI.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp b/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp
index 813adeba75..55360756f6 100644
--- a/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp
+++ b/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp
@@ -96,14 +96,13 @@ void CrossDSOCFI::buildCFICheck(Module &M) {
F->addFnAttr("target-features", "+thumb-mode");
if (T.isAArch64()) {
if (const auto *BTE = mdconst::extract_or_null<ConstantInt>(
- M.getModuleFlag("branch-target-enforcement"))) {
+ M.getModuleFlag("branch-target-enforcement"))) {
if (BTE->getZExtValue() != 0) {
F->addFnAttr("branch-target-enforcement");
}
}
}
-
auto args = F->arg_begin();
Value &CallSiteTypeId = *(args++);
CallSiteTypeId.setName("CallSiteTypeId");
``````````
</details>
https://github.com/llvm/llvm-project/pull/131224
More information about the llvm-commits
mailing list