Skip to content

Commit 66843d6

Browse files
committed
remove unnecessary llvm:: prefix
1 parent d8f90f2 commit 66843d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Dialect/Polynomial/IR/PolynomialAttributes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ mlir::Attribute mlir::polynomial::RingAttr::parse(AsmParser &parser,
174174
if (failed(parser.parseEqual()))
175175
return {};
176176

177-
IntegerType iType = llvm::dyn_cast<IntegerType>(typeAttr.getValue());
177+
IntegerType iType = dyn_cast<IntegerType>(typeAttr.getValue());
178178
if (!iType) {
179179
parser.emitError(parser.getCurrentLocation(),
180180
"invalid coefficient modulus, coefficientType must "

0 commit comments

Comments
 (0)