This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[PATCH] Fix build failures for MIPS gdb
- From: Thiemo Seufer <ths at networkno dot de>
- To: gdb-patches at sources dot redhat dot com
- Date: Mon, 31 Jul 2006 17:42:14 +0100
- Subject: [PATCH] Fix build failures for MIPS gdb
Hello All,
the appended patch fixes two minor type mismatches which are handled
as -Werror.
Thiemo
2006-07-31 Thiemo Seufer <ths@mips.com>
* linux-thread-db.c (thread_db_get_thread_local_address): Fix type
mismatch.
* tui/tui-stack.c (tui_show_frame_info): Likewise.
Index: gdb/linux-thread-db.c
===================================================================
RCS file: /cvs/src/src/gdb/linux-thread-db.c,v
retrieving revision 1.18
diff -u -p -r1.18 linux-thread-db.c
--- gdb/linux-thread-db.c 24 Jul 2006 18:57:32 -0000 1.18
+++ gdb/linux-thread-db.c 31 Jul 2006 16:33:37 -0000
@@ -1080,7 +1080,8 @@ thread_db_get_thread_local_address (ptid
thread_db_map_id2thr (thread_info, 1);
/* Finally, get the address of the variable. */
- err = td_thr_tls_get_addr_p (&thread_info->private->th, (void *) lm,
+ err = td_thr_tls_get_addr_p (&thread_info->private->th,
+ (void *)(size_t) lm,
offset, &address);
#ifdef THREAD_DB_HAS_TD_NOTALLOC
Index: gdb/tui/tui-stack.c
===================================================================
RCS file: /cvs/src/src/gdb/tui/tui-stack.c,v
retrieving revision 1.19
diff -u -p -r1.19 tui-stack.c
--- gdb/tui/tui-stack.c 14 Feb 2006 19:05:40 -0000 1.19
+++ gdb/tui/tui-stack.c 31 Jul 2006 16:33:37 -0000
@@ -356,7 +356,7 @@ tui_show_frame_info (struct frame_info *
else
{
if (find_pc_partial_function (get_frame_pc (fi), (char **) NULL,
- &low, (CORE_ADDR) NULL) == 0)
+ &low, (CORE_ADDR) 0) == 0)
error (_("No function contains program counter for selected frame."));
else
low = tui_get_low_disassembly_address (low, get_frame_pc (fi));