| 315 | |
| 316 | #ifdef mxMetering |
| 317 | static void fxTraceCode(txMachine* the, txSlot* stack, txU1 theCode) |
| 318 | { |
| 319 | if (((XS_NO_CODE < theCode) && (theCode < XS_CODE_COUNT))) |
| 320 | fprintf(stderr, "\n%u %ld: %s", the->meterIndex, the->stackTop - stack, gxCodeNames[theCode]); |
| 321 | else |
| 322 | fprintf(stderr, "\n%u %ld: ?", the->meterIndex, the->stackTop - stack); |
| 323 | } |
| 324 | #else |
| 325 | static void fxTraceCode(txMachine* the, txSlot* stack, txU1 theCode) |
| 326 | { |