| 36 | caller(nullptr), |
| 37 | caller_loop_location(-1) {} |
| 38 | void ResetStack(int new_index, SCCNodeData* new_caller) { |
| 39 | index = new_index; |
| 40 | lowlink = new_index; |
| 41 | onstack = true; |
| 42 | caller = new_caller; |
| 43 | caller_loop_location = 0; |
| 44 | } |
| 45 | const NodeDef* node; |
| 46 | int index; |
| 47 | int lowlink; |