Skip to content

Commit c1fc4c6

Browse files
authored
[mlir][SMT] fix the operation name in ArrayBroadcastOp description (#135746)
1 parent 05eafd9 commit c1fc4c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/include/mlir/Dialect/SMT/IR/SMTArrayOps.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def ArrayBroadcastOp : SMTArrayOp<"broadcast", [
7575
This operation represents a broadcast of the 'value' operand to all indices
7676
of the array. It is equivalent to
7777
```
78-
%0 = smt.declare "array" : !smt.array<[!smt.int -> !smt.bool]>
78+
%0 = smt.declare_fun "array" : !smt.array<[!smt.int -> !smt.bool]>
7979
%1 = smt.forall ["idx"] {
8080
^bb0(%idx: !smt.int):
8181
%2 = smt.array.select %0[%idx] : !smt.array<[!smt.int -> !smt.bool]>

0 commit comments

Comments
 (0)