[llvm] [RISCV] Check feature bits in getBrCond (PR #129859)
Pengcheng Wang via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 5 03:07:29 PST 2025
================
@@ -45,7 +45,8 @@ enum CondCode {
};
CondCode getOppositeBranchCondition(CondCode);
-unsigned getBrCond(CondCode CC, bool Imm = false);
+unsigned getBrCond(CondCode CC, const FeatureBitset &FeatureBits,
----------------
wangpc-pp wrote:
The result is the same but we don't need to call `getFeatureBits`(I did a rewrite before: https://github.com/llvm/llvm-project/pull/71770). We pass RISCVSubtarget in https://github.com/llvm/llvm-project/pull/127463.
https://github.com/llvm/llvm-project/pull/129859
More information about the llvm-commits
mailing list