[llvm] [RISCV] Add late optimization pass for riscv (PR #133256)

via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 27 10:07:04 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 8742022ec74c54f1415707261ccc2054a3decd5f bbda8ffb884d8068a43ddb48e2243d3f5d1d789d --extensions cpp,h -- llvm/lib/Target/RISCV/RISCVLateOpt.cpp llvm/lib/Target/RISCV/RISCV.h llvm/lib/Target/RISCV/RISCVInstrInfo.cpp llvm/lib/Target/RISCV/RISCVInstrInfo.h llvm/lib/Target/RISCV/RISCVTargetMachine.cpp
``````````

</details>

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

``````````diff
diff --git a/llvm/lib/Target/RISCV/RISCVLateOpt.cpp b/llvm/lib/Target/RISCV/RISCVLateOpt.cpp
index 01965c32ea..081fa27142 100644
--- a/llvm/lib/Target/RISCV/RISCVLateOpt.cpp
+++ b/llvm/lib/Target/RISCV/RISCVLateOpt.cpp
@@ -65,7 +65,8 @@ bool RISCVLateOpt::trySimplifyCondBr(
   int64_t C0, C1;
   if (RISCVInstrInfo::isFromLoadImm(MRI, Cond[1], C0) &&
       RISCVInstrInfo::isFromLoadImm(MRI, Cond[2], C1)) {
-    MachineBasicBlock *Folded = RISCVInstrInfo::evaluateCondBranch(CC, C0, C1) ? TBB : FBB;
+    MachineBasicBlock *Folded =
+        RISCVInstrInfo::evaluateCondBranch(CC, C0, C1) ? TBB : FBB;
 
     // At this point, its legal to optimize.
     RII->removeBranch(MBB);

``````````

</details>


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


More information about the llvm-commits mailing list