** Find a "name" for the register 'c'. */
| 527 | ** Find a "name" for the register 'c'. |
| 528 | */ |
| 529 | static void rname (const Proto *p, int pc, int c, const char **name) { |
| 530 | const char *what = basicgetobjname(p, &pc, c, name); /* search for 'c' */ |
| 531 | if (!(what && *what == 'c')) /* did not find a constant name? */ |
| 532 | *name = "?"; |
| 533 | } |
| 534 | |
| 535 | |
| 536 | /* |
no test coverage detected