[llvm] [RISCV] Check feature bits in getBrCond (PR #129859)
Sudharsan Veeravalli via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 5 02:53:18 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,
----------------
svs-quic wrote:
Thought it would be simpler to just check the feature bits than to pass the Subtarget given that we don't need anything else.
https://github.com/llvm/llvm-project/pull/129859
More information about the llvm-commits
mailing list