@@ -312,17 +312,15 @@ def testApplyRegisteredPassOp(module: Module):
312
312
transform .AnyOpType .get (),
313
313
mod ,
314
314
"symbol-privatize" ,
315
- options = { "exclude" : ("a" , "b" ) },
315
+ options = {"exclude" : ("a" , "b" )},
316
316
)
317
317
# CHECK: %[[SYMBOL_A:.+]] = transform.param.constant
318
318
symbol_a = transform .param_constant (
319
- transform .AnyParamType .get (),
320
- StringAttr .get ("a" )
319
+ transform .AnyParamType .get (), StringAttr .get ("a" )
321
320
)
322
321
# CHECK: %[[SYMBOL_B:.+]] = transform.param.constant
323
322
symbol_b = transform .param_constant (
324
- transform .AnyParamType .get (),
325
- StringAttr .get ("b" )
323
+ transform .AnyParamType .get (), StringAttr .get ("b" )
326
324
)
327
325
# CHECK: %{{.*}} = apply_registered_pass "symbol-privatize"
328
326
# CHECK-SAME: with options = {"exclude" = [%[[SYMBOL_A]], %[[SYMBOL_B]]]}
@@ -331,6 +329,6 @@ def testApplyRegisteredPassOp(module: Module):
331
329
transform .AnyOpType .get (),
332
330
mod ,
333
331
"symbol-privatize" ,
334
- options = { "exclude" : (symbol_a , symbol_b ) },
332
+ options = {"exclude" : (symbol_a , symbol_b )},
335
333
)
336
334
transform .YieldOp ()
0 commit comments