Missed change - remove 1-d tag memref restriction while parsing DmaStartOp.

Fixing oversight from cl/216429885.

PiperOrigin-RevId: 216768516
This commit is contained in:
Uday Bondhugula 2018-10-11 15:08:25 -07:00 committed by jpienaar
parent 8dda701a9c
commit 0ceda12cc5
1 changed files with 0 additions and 5 deletions

View File

@ -452,11 +452,6 @@ bool DmaStartOp::parse(OpAsmParser *parser, OperationState *result) {
return parser->emitError(parser->getNameLoc(),
"tag memref rank not equal to indices count");
// These should be verified in verify(). TODO(b/116737205).
if (tagIndexInfos.size() != 1)
return parser->emitError(parser->getNameLoc(),
"only 1-d tag memref supported");
return false;
}