[llvm] [RISCV] Remove unnecessary entries from RISCVVInversePseudosTable. NFC (PR #128376)

Pengcheng Wang via llvm-commits llvm-commits at lists.llvm.org
Sun Feb 23 22:17:03 PST 2025


================
@@ -569,7 +572,7 @@ def RISCVVPseudosTable : GenericTable {
 }
 
 def RISCVVInversePseudosTable : GenericTable {
-  let FilterClass = "RISCVVPseudo";
+  let FilterClass = "RISCVVPseudoInverse";
----------------
wangpc-pp wrote:

I'd prefer to set `NeedBeInInversePseudoTable` to 0 in `RISCVVPseudo` and override it explicitly via `let NeedBeInInversePseudoTable = 1` in these classes. We don't need a `RISCVVPseudoInverse` class.

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


More information about the llvm-commits mailing list