[llvm] [RISCV] Generate MIPS load/store pair instructions (PR #124717)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 12 14:56:32 PST 2025
================
@@ -62,10 +62,15 @@ static cl::opt<unsigned> RISCVMinimumJumpTableEntries(
"riscv-min-jump-table-entries", cl::Hidden,
cl::desc("Set minimum number of entries to use a jump table on RISCV"));
-static cl::opt<bool>
- UseMIPSLoadStorePairsOpt("mips-riscv-load-store-pairs",
- cl::desc("RISCV: Optimize for load-store bonding"),
- cl::init(false), cl::Hidden);
+static cl::opt<bool> UseMIPSLoadStorePairsOpt(
+ "mips-riscv-load-store-pairs",
----------------
topperc wrote:
The options should start with `riscv-`. Starting with `mips-` makes it alphabetized with options for the Mips target in the help.
https://github.com/llvm/llvm-project/pull/124717
More information about the llvm-commits
mailing list