Add back missing return to non-void function

It was incorrectly removed accidentally in e4e463e747.
This commit is contained in:
Mehdi Amini 2022-01-03 06:18:25 +00:00
parent a5a24c9370
commit 78389de4d3
1 changed files with 1 additions and 0 deletions

View File

@ -1665,6 +1665,7 @@ public:
rewriter.create<linalg::YieldOp>(loc, result);
return success();
}
return failure();
}
};