Skip to content

Commit 9fda819

Browse files
committed
drop llvm
1 parent a50d31c commit 9fda819

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/lib/Dialect/Linalg/IR/LinalgOps.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)