| 887 | inline bool IsScopedAllocator(const Node* n) { return n->IsScopedAllocator(); } |
| 888 | |
| 889 | inline bool IsHostMemoryPreserving(const Node* node) { |
| 890 | return IsIdentity(node) || IsControlFlow(node); |
| 891 | } |
| 892 | |
| 893 | // NOTE: We declare Reference type of NodeIter and NeighborIter as Node* (see |
| 894 | // https://en.cppreference.com/w/cpp/iterator/iterator). |
nothing calls this directly
no test coverage detected