| 741 | } |
| 742 | |
| 743 | void fxTerminateLinker(txLinker* linker) |
| 744 | { |
| 745 | txLinkerChunk* block = linker->firstChunk; |
| 746 | while (block) { |
| 747 | txLinkerChunk* nextChunk = block->nextChunk; |
| 748 | c_free(block); |
| 749 | block = nextChunk; |
| 750 | } |
| 751 | // { |
| 752 | // txU1 code; |
| 753 | // for (code = 0; code < XS_CODE_COUNT; code++) { |
| 754 | // fprintf(stderr, "%s %d\n", gxCodeNames[code], gxCodeUsages[code]); |
| 755 | // } |
| 756 | // |
| 757 | // } |
| 758 | } |
| 759 | |
| 760 | void fxUnuseCode(txU1 code) |
| 761 | { |