| 216 | */ |
| 217 | |
| 218 | TARGET * target_scc( TARGET * t ) |
| 219 | { |
| 220 | TARGET * result = t; |
| 221 | while ( result->scc_root ) |
| 222 | result = result->scc_root; |
| 223 | while ( t->scc_root ) |
| 224 | { |
| 225 | TARGET * const tmp = t->scc_root; |
| 226 | t->scc_root = result; |
| 227 | t = tmp; |
| 228 | } |
| 229 | return result; |
| 230 | } |
| 231 | |
| 232 | |
| 233 | /* |
no outgoing calls
no test coverage detected