[llvm] [RISCV] Add late optimization pass for riscv (PR #133256)
Michael Maitland via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 27 09:27:32 PDT 2025
================
@@ -307,6 +307,13 @@ class RISCVInstrInfo : public RISCVGenInstrInfo {
static bool isLdStSafeToPair(const MachineInstr &LdSt,
const TargetRegisterInfo *TRI);
+ static bool evaluateCondBranch(unsigned CC, int64_t C0, int64_t C1);
+
+ static bool isLoadImm(const MachineInstr *MI, int64_t &Imm);
----------------
michaelmaitland wrote:
Should it be private function?
https://github.com/llvm/llvm-project/pull/133256
More information about the llvm-commits
mailing list