[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:59 PDT 2025
================
@@ -98,6 +98,15 @@ bool SystemZTargetInfo::validateAsmConstraint(
case 'T': // Likewise, plus an index
Info.setAllowsMemory();
return true;
+ case '@':
+ // CC condition changes.
+ if (StringRef(Name) == "@cc") {
+ Name += 2;
+ Info.setAllowsRegister();
+ Info.setFlagOutputCCUpperBound(4);
----------------
uweigand wrote:
*Here* we should have the platform-specific comment explaining why this is 4.
https://github.com/llvm/llvm-project/pull/125970
More information about the llvm-commits
mailing list