Removing dead code. Above we already continued when rom->addr + valuegreaterthan0 < addr so this condition is always false.
Signed-off-by: Joel Schopp <jsch...@austin.ibm.com> --- hw/loader.c | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/hw/loader.c b/hw/loader.c index 79a6f95..49ac1fa 100644 --- a/hw/loader.c +++ b/hw/loader.c @@ -733,11 +733,6 @@ int rom_copy(uint8_t *dest, target_phys_addr_t addr, size_t size) s = rom->data; l = rom->romsize; - if (rom->addr < addr) { - d = dest; - s += (addr - rom->addr); - l -= (addr - rom->addr); - } if ((d + l) > (dest + size)) { l = dest - d; } -- 1.7.0.4