[llvm] [M68k] Prevent COPY instruction from killing live condition flags (PR #168485)
Jessica Clarke via llvm-commits
llvm-commits at lists.llvm.org
Sat Jul 4 07:55:56 PDT 2026
================
@@ -465,6 +465,9 @@ def IsPIC : Predicate<"TM.isPositionIndependent()">;
def IsNotPIC : Predicate<"!TM.isPositionIndependent()">;
// ISA versions
+def IsM68000 : Predicate<"Subtarget->isM68000()">,
+ AssemblerPredicate<(all_of FeatureISA00)>;
----------------
jrtc27 wrote:
```suggestion
AssemblerPredicate<(all_of FeatureISA00)>;
```
https://github.com/llvm/llvm-project/pull/168485
More information about the llvm-commits
mailing list