** Find a "name" for the register 'c'. */
| 439 | ** Find a "name" for the register 'c'. |
| 440 | */ |
| 441 | static void rname (const Proto *p, int pc, int c, const char **name) { |
| 442 | const char *what = getobjname(p, pc, c, name); /* search for 'c' */ |
| 443 | if (!(what && *what == 'c')) /* did not find a constant name? */ |
| 444 | *name = "?"; |
| 445 | } |
| 446 | |
| 447 | |
| 448 | /* |
no test coverage detected