| 885 | inline bool IsMetadata(const Node* n) { return n->IsMetadata(); } |
| 886 | |
| 887 | inline bool IsScopedAllocator(const Node* n) { return n->IsScopedAllocator(); } |
| 888 | |
| 889 | inline bool IsHostMemoryPreserving(const Node* node) { |
| 890 | return IsIdentity(node) || IsControlFlow(node); |
no test coverage detected