[llvm-branch-commits] [clang] [CIR][ARM] Refactor argument handling in `emitAArch64BuiltinExpr` (NFC) (PR #182105)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Feb 18 11:08:56 PST 2026
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 origin/main HEAD --extensions c,cpp -- clang/lib/CIR/CodeGen/CIRGenBuiltinAArch64.cpp clang/lib/CodeGen/TargetBuiltins/ARM.cpp clang/lib/Sema/SemaARM.cpp clang/test/CodeGen/arm64-microsoft-intrinsics.c --diff_from_common_commit
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/clang/lib/CIR/CodeGen/CIRGenBuiltinAArch64.cpp b/clang/lib/CIR/CodeGen/CIRGenBuiltinAArch64.cpp
index a721c14d3..340c79495 100644
--- a/clang/lib/CIR/CodeGen/CIRGenBuiltinAArch64.cpp
+++ b/clang/lib/CIR/CodeGen/CIRGenBuiltinAArch64.cpp
@@ -1424,7 +1424,8 @@ CIRGenFunction::emitAArch64BuiltinExpr(unsigned builtinID, const CallExpr *expr,
getContext().BuiltinInfo.getName(builtinID));
}
}
- ops.push_back(emitScalarOrConstFoldImmArg(iceArguments, i, expr->getArg(i)));
+ ops.push_back(
+ emitScalarOrConstFoldImmArg(iceArguments, i, expr->getArg(i)));
}
assert(!cir::MissingFeatures::neonSISDIntrinsics());
``````````
</details>
https://github.com/llvm/llvm-project/pull/182105
More information about the llvm-branch-commits
mailing list