[PATCH] D141281: [AMDGPU] S_MULK_I32 does not define SCC. NFCI.
Jay Foad via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 9 07:46:43 PST 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG6a6f62a719b9: [AMDGPU] S_MULK_I32 does not define SCC. NFCI. (authored by foad).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D141281/new/
https://reviews.llvm.org/D141281
Files:
llvm/lib/Target/AMDGPU/SOPInstructions.td
Index: llvm/lib/Target/AMDGPU/SOPInstructions.td
===================================================================
--- llvm/lib/Target/AMDGPU/SOPInstructions.td
+++ llvm/lib/Target/AMDGPU/SOPInstructions.td
@@ -865,9 +865,10 @@
} // End SOPKZext = 1
} // End isCompare = 1
-let Defs = [SCC], isCommutable = 1, DisableEncoding = "$src0",
+let isCommutable = 1, DisableEncoding = "$src0",
Constraints = "$sdst = $src0" in {
- def S_ADDK_I32 : SOPK_32TIE <"s_addk_i32">;
+ let Defs = [SCC] in
+ def S_ADDK_I32 : SOPK_32TIE <"s_addk_i32">;
def S_MULK_I32 : SOPK_32TIE <"s_mulk_i32">;
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D141281.487437.patch
Type: text/x-patch
Size: 604 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230109/e3cc1f16/attachment.bin>
More information about the llvm-commits
mailing list