** Find a "name" for a 'C' value in an RK instruction. */
| 449 | ** Find a "name" for a 'C' value in an RK instruction. |
| 450 | */ |
| 451 | static void rkname (const Proto *p, int pc, Instruction i, const char **name) { |
| 452 | int c = GETARG_C(i); /* key index */ |
| 453 | if (GETARG_k(i)) /* is 'c' a constant? */ |
| 454 | kname(p, c, name); |
| 455 | else /* 'c' is a register */ |
| 456 | rname(p, pc, c, name); |
| 457 | } |
| 458 | |
| 459 | |
| 460 | static int filterpc (int pc, int jmptarget) { |
no test coverage detected