| 127 | } |
| 128 | |
| 129 | void ProgramDock::writeback_inst_addr(machine::Address addr) { |
| 130 | if (addr != machine::STAGEADDR_NONE) { follow_addr[FOLLOWSRC_WRITEBACK] = addr; } |
| 131 | emit stage_addr_changed(ProgramModel::STAGEADDR_WRITEBACK, addr); |
| 132 | if (follow_source == FOLLOWSRC_WRITEBACK) { update_follow_position(); } |
| 133 | } |
| 134 | |
| 135 | void ProgramDock::update_follow_position() { |
| 136 | if (follow_source != FOLLOWSRC_NONE) { emit focus_addr(follow_addr[follow_source]); } |
nothing calls this directly
no outgoing calls
no test coverage detected