forked from OSchip/llvm-project
Missed change - remove 1-d tag memref restriction while parsing DmaStartOp.
Fixing oversight from cl/216429885. PiperOrigin-RevId: 216768516
This commit is contained in:
parent
8dda701a9c
commit
0ceda12cc5
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue