[llvm] [RISCV] Sink hasSideEffects, mayLoad, mayStore from defs to classes in RISCVInstrInfo.td. NFC (PR #130714)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 10 23:03:58 PDT 2025
================
@@ -89,6 +91,7 @@ class CVInstMacMulN<bits<2> funct2, bits<3> funct3, dag outs, dag ins,
let DecoderNamespace = "XCV";
}
+let hasSideEffects = 0, mayLoad = 0, mayStore = 0 in {
----------------
topperc wrote:
I didn't do that because I thoguth `CVInstMacMulN` was more like a format class like RISCVInstrFormats.td rather than a class in RISCVInstrInfo.td. So the flags would go on its derived classes if I keep the usual separation.
https://github.com/llvm/llvm-project/pull/130714
More information about the llvm-commits
mailing list