** Find a "name" for the register 'c'. */
| 537 | ** Find a "name" for the register 'c'. |
| 538 | */ |
| 539 | static void rname (const Proto *p, int pc, int c, const char **name) { |
| 540 | const char *what = basicgetobjname(p, &pc, c, name); /* search for 'c' */ |
| 541 | if (!(what && *what == 'c')) /* did not find a constant name? */ |
| 542 | *name = "?"; |
| 543 | } |
| 544 | |
| 545 | |
| 546 | /* |
no test coverage detected