From: Frank Ch. Eigler Date: Fri, 16 Mar 2001 03:20:26 +0000 (+0000) Subject: * tweak X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=35c209920b75f22de686ab26de0ed352bc25f22b;p=deliverable%2Fbinutils-gdb.git * tweak 2001-03-15 Frank Ch. Eigler * sim-core.c (sim_core_map_attach): Correct overlap-related error messages. --- diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index c83c581657..98c5e81598 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,8 @@ +2001-03-15 Frank Ch. Eigler + + * sim-core.c (sim_core_map_attach): Correct overlap-related + error messages. + 2001-03-07 Michael Meissner * run.c (alloca-conf.h): Delete, no longer provided. diff --git a/sim/common/sim-core.c b/sim/common/sim-core.c index f7579c40a9..8e5ef38ab9 100644 --- a/sim/common/sim-core.c +++ b/sim/common/sim-core.c @@ -226,8 +226,8 @@ sim_core_map_attach (SIM_DESC sd, device_error (client, "memory map %d:0x%lx..0x%lx (%ld bytes) overlaps %d:0x%lx..0x%lx (%ld bytes)", space, (long) addr, + (long) (addr + nr_bytes - 1), (long) nr_bytes, - (long) (addr + (nr_bytes - 1)), next_mapping->space, (long) next_mapping->base, (long) next_mapping->bound, @@ -237,8 +237,8 @@ sim_core_map_attach (SIM_DESC sd, sim_hw_abort (sd, client, "memory map %d:0x%lx..0x%lx (%ld bytes) overlaps %d:0x%lx..0x%lx (%ld bytes)", space, (long) addr, - (long) nr_bytes, (long) (addr + (nr_bytes - 1)), + (long) nr_bytes, next_mapping->space, (long) next_mapping->base, (long) next_mapping->bound, @@ -247,8 +247,8 @@ sim_core_map_attach (SIM_DESC sd, sim_io_error (sd, "memory map %d:0x%lx..0x%lx (%ld bytes) overlaps %d:0x%lx..0x%lx (%ld bytes)", space, (long) addr, - (long) nr_bytes, (long) (addr + (nr_bytes - 1)), + (long) nr_bytes, next_mapping->space, (long) next_mapping->base, (long) next_mapping->bound,