384,388c384
< 0: bc({{
< PowerISA::PCState pc = PCS;
< pc.npc((uint32_t)(pc.pc() + disp));
< PCS = pc;
< }});
---
> 0: bc({{ NPC = (uint32_t)(PC + disp); }});
393,397c389
< 1: bca({{
< PowerISA::PCState pc = PCS;
< pc.npc(targetAddr);
< PCS = pc;
< }});
---
> 1: bca({{ NPC = targetAddr; }});
405,409c397
< 0: b({{
< PowerISA::PCState pc = PCS;
< pc.npc((uint32_t)(pc.pc() + disp));
< PCS = pc;
< }});
---
> 0: b({{ NPC = (uint32_t)(PC + disp); }});
414,418c402
< 1: ba({{
< PowerISA::PCState pc = PCS;
< pc.npc(targetAddr);
< PCS = pc;
< }});
---
> 1: ba({{ NPC = targetAddr; }});
426,430c410
< 16: bclr({{
< PowerISA::PCState pc = PCS;
< pc.npc(LR & 0xfffffffc);
< PCS = pc;
< }});
---
> 16: bclr({{ NPC = LR & 0xfffffffc; }});
435,439c415
< 528: bcctr({{
< PowerISA::PCState pc = PCS;
< pc.npc(CTR & 0xfffffffc);
< PCS = pc;
< }});
---
> 528: bcctr({{ NPC = CTR & 0xfffffffc; }});