[llvm] [RISCV] Add late optimization pass for RISC-V to optimize branch instructions (PR #131728)
Sam Elliott via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 19 11:40:09 PDT 2025
================
@@ -567,6 +568,7 @@ void RISCVPassConfig::addPreEmitPass() {
addPass(createMachineCopyPropagationPass(true));
addPass(&BranchRelaxationPassID);
addPass(createRISCVMakeCompressibleOptPass());
+ addPass(createRISCVLatePeepholeOptPass());
----------------
lenary wrote:
I would put it immediately before branch relaxation, unless you're also sure that machine copy propagation won't also introduce these kinds of branches.
https://github.com/llvm/llvm-project/pull/131728
More information about the llvm-commits
mailing list