| 876 | inline bool IsConstant(const Node* node) { return node->IsConstant(); } |
| 877 | inline bool IsVariable(const Node* node) { return node->IsVariable(); } |
| 878 | inline bool IsIdentity(const Node* node) { return node->IsIdentity(); } |
| 879 | |
| 880 | // Returns true iff 'n' is a control flow node. |
| 881 | inline bool IsControlFlow(const Node* n) { return n->IsControlFlow(); } |
no test coverage detected