| 875 | |
| 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. |
no test coverage detected