We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e455a8e commit c4948cdCopy full SHA for c4948cd
1 file changed
mlir/lib/Target/DXSA/BinaryWriter.cpp
@@ -69,6 +69,9 @@ class Writer {
69
}
70
71
for (auto &op : region.front()) {
72
+ // Only handle instructions. Skip operands and indices - they
73
+ // are emitted by emitInstruction for instructions that use
74
+ // them.
75
if (auto inst = dyn_cast<dxsa::Instruction>(op)) {
76
if (failed(emitInstruction(inst))) {
77
return failure();
0 commit comments