| 461 | } |
| 462 | |
| 463 | void NodeZeroOP::CompileLLVMExtra() |
| 464 | { |
| 465 | NodeZeroOP *curr = head; |
| 466 | while(curr) |
| 467 | { |
| 468 | curr->CompileLLVM(); |
| 469 | curr = curr->next; |
| 470 | } |
| 471 | } |
| 472 | |
| 473 | void NodeNumber::CompileLLVM() |
| 474 | { |
nothing calls this directly
no test coverage detected