Use mlir::OpState::operator->() to get to methods of mlir::Operation.

This is a preparation step to remove those methods from OpState.

PiperOrigin-RevId: 348010582
This commit is contained in:
Christian Sigg 2020-12-17 06:28:06 -08:00 committed by TensorFlow MLIR Team
parent 1f244c3e2c
commit dc7e63f74c
1 changed files with 2 additions and 2 deletions

View File

@ -185,7 +185,7 @@ struct HloToLhloCustomCallOpConverter
// for args and outputs.
const int32_t segments[2] = {static_cast<int32_t>(operands.size()),
static_cast<int32_t>(op->getNumResults())};
lhloOp.setAttr(lhloOp.getOperandSegmentSizeAttr(),
lhloOp->setAttr(lhloOp.getOperandSegmentSizeAttr(),
rewriter.getI32VectorAttr(segments));
rewriter.replaceOp(op, ArrayRef<Value>(buffer_args).slice(operands.size()));