From bf75638ec12cf0175faebe99818cd7c28b801c41 Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Thu, 16 Apr 2009 18:41:40 +0000 Subject: [PATCH] Undo the following change. Not correct, after all: * procfs.c (solib_mappings_callback, find_memory_regions_callback): Fix a compilation warning on mips-irix due to casting from a pointer of different size. --- gdb/ChangeLog | 5 +++++ gdb/procfs.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 177f004..aa9ab19 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2009-04-16 Joel Brobecker + * procfs.c (solib_mappings_callback, find_memory_regions_callback): + Revert the previous change. Might not be correct, actually. + +2009-04-16 Joel Brobecker + * ada-lang.h (ada_adjust_exception_stop, ada_print_exception_stop) (ada_get_current_task, ada_print_exception_breakpoint_nontask) (ada_print_exception_breakpoint_task, ada_reset_thread_registers): diff --git a/gdb/procfs.c b/gdb/procfs.c index 36d0e47..adb44f4 100644 --- a/gdb/procfs.c +++ b/gdb/procfs.c @@ -5473,7 +5473,7 @@ int solib_mappings_callback (struct prmap *map, no file, so the ioctl may return failure, but that's not a problem. */ #endif - return (*func) (fd, (CORE_ADDR) (uintptr_t) map->pr_vaddr); + return (*func) (fd, (CORE_ADDR) map->pr_vaddr); } /* @@ -5524,7 +5524,7 @@ find_memory_regions_callback (struct prmap *map, void *), void *data) { - return (*func) ((CORE_ADDR) (uintptr_t) map->pr_vaddr, + return (*func) ((CORE_ADDR) map->pr_vaddr, map->pr_size, (map->pr_mflags & MA_READ) != 0, (map->pr_mflags & MA_WRITE) != 0, -- 2.7.4