File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
mlir/lib/Dialect/Linalg/IR Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1502,13 +1502,13 @@ void printShortForm(OpAsmPrinter &p, Operation *payloadOp) {
15021502 p << " { " << payloadOp->getName ().getStringRef ();
15031503 for (const auto &attr : payloadOp->getAttrs ()) {
15041504 if (auto fastAttr =
1505- llvm:: dyn_cast<arith::FastMathFlagsAttr>(attr.getValue ())) {
1505+ dyn_cast<arith::FastMathFlagsAttr>(attr.getValue ())) {
15061506 if (fastAttr.getValue () == arith::FastMathFlags::none) {
15071507 elidedAttrs.push_back (attr.getName ().str ());
15081508 }
15091509 }
15101510 if (auto denormAttr =
1511- llvm:: dyn_cast<arith::DenormalModeAttr>(attr.getValue ())) {
1511+ dyn_cast<arith::DenormalModeAttr>(attr.getValue ())) {
15121512 if (denormAttr.getValue () == arith::DenormalMode::ieee) {
15131513 elidedAttrs.push_back (attr.getName ().str ());
15141514 }
You can’t perform that action at this time.
0 commit comments