mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-19 17:18:24 +08:00
* tweak
2001-03-15 Frank Ch. Eigler <fche@redhat.com> * sim-core.c (sim_core_map_attach): Correct overlap-related error messages.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2001-03-15 Frank Ch. Eigler <fche@redhat.com>
|
||||||
|
|
||||||
|
* sim-core.c (sim_core_map_attach): Correct overlap-related
|
||||||
|
error messages.
|
||||||
|
|
||||||
2001-03-07 Michael Meissner <meissner@redhat.com>
|
2001-03-07 Michael Meissner <meissner@redhat.com>
|
||||||
|
|
||||||
* run.c (alloca-conf.h): Delete, no longer provided.
|
* run.c (alloca-conf.h): Delete, no longer provided.
|
||||||
|
@ -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)",
|
device_error (client, "memory map %d:0x%lx..0x%lx (%ld bytes) overlaps %d:0x%lx..0x%lx (%ld bytes)",
|
||||||
space,
|
space,
|
||||||
(long) addr,
|
(long) addr,
|
||||||
|
(long) (addr + nr_bytes - 1),
|
||||||
(long) nr_bytes,
|
(long) nr_bytes,
|
||||||
(long) (addr + (nr_bytes - 1)),
|
|
||||||
next_mapping->space,
|
next_mapping->space,
|
||||||
(long) next_mapping->base,
|
(long) next_mapping->base,
|
||||||
(long) next_mapping->bound,
|
(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)",
|
sim_hw_abort (sd, client, "memory map %d:0x%lx..0x%lx (%ld bytes) overlaps %d:0x%lx..0x%lx (%ld bytes)",
|
||||||
space,
|
space,
|
||||||
(long) addr,
|
(long) addr,
|
||||||
(long) nr_bytes,
|
|
||||||
(long) (addr + (nr_bytes - 1)),
|
(long) (addr + (nr_bytes - 1)),
|
||||||
|
(long) nr_bytes,
|
||||||
next_mapping->space,
|
next_mapping->space,
|
||||||
(long) next_mapping->base,
|
(long) next_mapping->base,
|
||||||
(long) next_mapping->bound,
|
(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)",
|
sim_io_error (sd, "memory map %d:0x%lx..0x%lx (%ld bytes) overlaps %d:0x%lx..0x%lx (%ld bytes)",
|
||||||
space,
|
space,
|
||||||
(long) addr,
|
(long) addr,
|
||||||
(long) nr_bytes,
|
|
||||||
(long) (addr + (nr_bytes - 1)),
|
(long) (addr + (nr_bytes - 1)),
|
||||||
|
(long) nr_bytes,
|
||||||
next_mapping->space,
|
next_mapping->space,
|
||||||
(long) next_mapping->base,
|
(long) next_mapping->base,
|
||||||
(long) next_mapping->bound,
|
(long) next_mapping->bound,
|
||||||
|
Reference in New Issue
Block a user