[llvm] [RISCV] Expand mul X, C where C=2^N*(3, 5, 9)*(3, 5, 9) (PR #108100)

via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 10 15:02:58 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 0fc4147c6d0c5bfb1fd9ed2a9f1c3a70e9281813 0c04ae99cca7d0a1c085b7b3e112dc534a9ac080 --extensions cpp -- llvm/lib/Target/RISCV/RISCVISelLowering.cpp
``````````

</details>

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

``````````diff
diff --git a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
index 32641962ed..d69223a92c 100644
--- a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+++ b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
@@ -14147,12 +14147,11 @@ static SDValue expandMul(SDNode *N, SelectionDAG &DAG,
           SDValue Mul359A =
               DAG.getNode(RISCVISD::SHL_ADD, DL, VT, X,
                           DAG.getConstant(Log2_64(Divisor - 1), DL, VT), X);
-          SDValue Mul359B =
-              DAG.getNode(RISCVISD::SHL_ADD, DL, VT, Mul359A,
-                          DAG.getConstant(Log2_64(Divisor2 - 1), DL, VT),
-                          Mul359A);
+          SDValue Mul359B = DAG.getNode(
+              RISCVISD::SHL_ADD, DL, VT, Mul359A,
+              DAG.getConstant(Log2_64(Divisor2 - 1), DL, VT), Mul359A);
           return DAG.getNode(ISD::SHL, DL, VT, Mul359B,
-                           DAG.getConstant(Log2_64(MulAmt3), DL, VT));
+                             DAG.getConstant(Log2_64(MulAmt3), DL, VT));
         }
       }
     }

``````````

</details>


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


More information about the llvm-commits mailing list