Skip to content

Commit a57961f

Browse files
committed
fix format
1 parent 5333a6e commit a57961f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/test/python/rewrite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def to_muli(op, rewriter, pattern):
3131
def constant_1_to_2(op, rewriter, pattern):
3232
c = op.attributes["value"].value
3333
if c != 1:
34-
return True # failed to match
34+
return True # failed to match
3535
with rewriter.ip:
3636
new_op = arith.constant(op.result.type, 2, loc=op.location)
3737
rewriter.replace_op(op, [new_op])

0 commit comments

Comments
 (0)