| 156 | } |
| 157 | |
| 158 | void fxCheckModCode(txLinker* linker, txString name, txU1 code, txString what) |
| 159 | { |
| 160 | if (fxIsCodeUsed(code)) { |
| 161 | fprintf(stderr, "### error: strip %s: incompatible code: %s\n", name, what); |
| 162 | linker->errorCount++; |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | void fxCheckModGlobal(txLinker* linker, txString name, txString key) |
| 167 | { |
no test coverage detected