This is an archive of the discontinued LLVM Phabricator instance.

[mlir][linalg][bufferize] CallOps do not bufferize to memory writes
ClosedPublic

Authored by springerm on Nov 26 2021, 12:13 AM.

Details

Summary

However, since CallOps have no aliasing OpResults, their OpOperands always bufferize out-of-place.

This change removes bufferizesToMemoryWrite from CallOpInterface. This method was called, but its return value did not matter.

Depends On D114513

Diff Detail