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