File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
mlir/lib/Dialect/LLVMIR/IR Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1586,14 +1586,14 @@ LogicalResult NVVM::ReduxOp::verify() {
15861586 if (!reduxType.isInteger (32 ))
15871587 return emitOpError (" '" )
15881588 << stringifyEnum (kind) << " ' redux kind unsupported with "
1589- << getType () << " type. Only supported type is 'i32'." ;
1589+ << reduxType << " type. Only supported type is 'i32'." ;
15901590 break ;
15911591 case NVVM::ReduxKind::FMIN:
15921592 case NVVM::ReduxKind::FMAX:
15931593 if (!reduxType.isF32 ())
15941594 return emitOpError (" '" )
15951595 << stringifyEnum (kind) << " ' redux kind unsupported with "
1596- << getType () << " type. Only supported type is 'f32'." ;
1596+ << reduxType << " type. Only supported type is 'f32'." ;
15971597 break ;
15981598 }
15991599
You can’t perform that action at this time.
0 commit comments