Skip to content

Commit

Permalink
Fix a comment at call-site to match the declared parameter (NFC)
Browse files Browse the repository at this point in the history
(clang-tidy warning)
  • Loading branch information
joker-eph committed Oct 9, 2021
1 parent d022f39 commit dda810c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlir/lib/Transforms/Utils/Utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@ LogicalResult mlir::normalizeMemRef(memref::AllocOp *allocOp) {
/*symbolOperands=*/symbolOperands,
/*domOpFilter=*/nullptr,
/*postDomOpFilter=*/nullptr,
/*allowDereferencingOps=*/true))) {
/*allowNonDereferencingOps=*/true))) {
// If it failed (due to escapes for example), bail out.
newAlloc.erase();
return failure();
Expand Down

0 comments on commit dda810c

Please sign in to comment.