[clang] [clang][RISCV] support BITINT with mixed-type (PR #156592)

via cfe-commits cfe-commits at lists.llvm.org
Tue Sep 2 23:36:52 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 origin/main HEAD --extensions c,cpp -- clang/test/CodeGen/RISCV/bitint.c clang/lib/CodeGen/Targets/RISCV.cpp clang/test/CodeGen/ext-int-cc.c
``````````

: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/CodeGen/Targets/RISCV.cpp b/clang/lib/CodeGen/Targets/RISCV.cpp
index fb95880af..e2caff85c 100644
--- a/clang/lib/CodeGen/Targets/RISCV.cpp
+++ b/clang/lib/CodeGen/Targets/RISCV.cpp
@@ -683,7 +683,7 @@ ABIArgInfo RISCVABIInfo::classifyArgumentType(QualType Ty, bool IsFixed,
     if (const auto *EIT = Ty->getAs<BitIntType>()) {
       // FIXME: Maybe we should treat 32 as a special case and wait for
       // the SPEC to decide.
-      if (EIT->getNumBits() <= 2*XLen)
+      if (EIT->getNumBits() <= 2 * XLen)
         return ABIArgInfo::getExtend(Ty, CGT.ConvertType(Ty));
       if (EIT->getNumBits() > 128 ||
           (!getContext().getTargetInfo().hasInt128Type() &&

``````````

</details>


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


More information about the cfe-commits mailing list