Home
Phabricator
Search
Configure Global Search
Log In
Transactions
D82060
Change Details
Change Details
Old
New
Diff
- This will allow calling these functions from Op's that support this interface (like FuncOp) directly: ``` FuncOp func = ... func.isPrivate() ```
- This will allow calling these functions from Op's that support this interface (like FuncOp) directly: ``` FuncOp func = ... if (func.isPrivate()) ```
- This will allow calling these functions from Op's that support this interface (like FuncOp) directly: ``` FuncOp func = ...
if (
func.isPrivate(
)
) ```
Continue