** Find a "name" for a 'C' value in an RK instruction. */
| 537 | ** Find a "name" for a 'C' value in an RK instruction. |
| 538 | */ |
| 539 | static void rkname (const Proto *p, int pc, Instruction i, const char **name) { |
| 540 | int c = GETARG_C(i); /* key index */ |
| 541 | if (GETARG_k(i)) /* is 'c' a constant? */ |
| 542 | kname(p, c, name); |
| 543 | else /* 'c' is a register */ |
| 544 | rname(p, pc, c, name); |
| 545 | } |
| 546 | |
| 547 | |
| 548 | /* |
no test coverage detected