[clang] [llvm] Add support for flag output operand "=@cc" for SystemZ. (PR #125970)
Ulrich Weigand via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 14 08:59:58 PDT 2025
================
@@ -2757,6 +2797,21 @@ static unsigned CCMaskForCondCode(ISD::CondCode CC) {
#undef CONV
}
+static unsigned CCMaskForSystemZCCVal(unsigned CC) {
----------------
uweigand wrote:
I don't think this is needed, this is simply `1 << (3 - CC)` or something. You have similar code inline elsewhere anyway, so you might just as well inline this too.
https://github.com/llvm/llvm-project/pull/125970
More information about the llvm-commits
mailing list