[llvm] [TableGen][DecoderEmitter] Replace opcode mask with booleans (NFC) (PR #159113)

Sergei Barannikov via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 16 08:31:32 PDT 2025


================
@@ -1149,6 +1150,7 @@ void DecoderTableBuilder::emitSoftFailTableEntry(unsigned EncodingID) const {
   TableInfo.Table.insertOpcode(OPC_SoftFail);
   TableInfo.Table.insertULEB128(PositiveMask.getZExtValue());
   TableInfo.Table.insertULEB128(NegativeMask.getZExtValue());
+  TableInfo.HasCheckPredicate = true;
----------------
s-barannikov wrote:

Whoops, thanks

https://github.com/llvm/llvm-project/pull/159113


More information about the llvm-commits mailing list