| 851 | inline bool IsSwitch(const Node* node) { return node->IsSwitch(); } |
| 852 | inline bool IsMerge(const Node* node) { return node->IsMerge(); } |
| 853 | inline bool IsEnter(const Node* node) { return node->IsEnter(); } |
| 854 | inline bool IsExit(const Node* node) { return node->IsExit(); } |
| 855 | inline bool IsNextIteration(const Node* n) { return n->IsNextIteration(); } |
| 856 | inline bool IsLoopCond(const Node* node) { return node->IsLoopCond(); } |