| 1281 | } |
| 1282 | |
| 1283 | static void irc2ir (bool dozero) |
| 1284 | { |
| 1285 | if (!using_prefetch) |
| 1286 | return; |
| 1287 | if (ir2irc) |
| 1288 | return; |
| 1289 | ir2irc = 1; |
| 1290 | out("regs.ir = regs.irc;\n"); |
| 1291 | if (dozero) |
| 1292 | out("regs.irc = 0;\n"); |
| 1293 | check_ipl(); |
| 1294 | } |
| 1295 | static void irc2ir (void) |
| 1296 | { |
| 1297 | irc2ir (false); |
no test coverage detected