From 09b587083c5b3e18b5b9b86ba7b4cf9839658d0d Mon Sep 17 00:00:00 2001 From: Jan Kratochvil Date: Tue, 29 Mar 2011 16:21:24 +0000 Subject: gdb/ Fix false GCC warning. * infcall.c (find_function_addr): Initialize funaddr. --- gdb/infcall.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gdb/infcall.c') diff --git a/gdb/infcall.c b/gdb/infcall.c index ca23704..3f9c871 100644 --- a/gdb/infcall.c +++ b/gdb/infcall.c @@ -252,7 +252,8 @@ find_function_addr (struct value *function, struct type **retval_type) struct type *ftype = check_typedef (value_type (function)); struct gdbarch *gdbarch = get_type_arch (ftype); struct type *value_type = NULL; - CORE_ADDR funaddr; + /* Initialize it just to avoid a GCC false warning. */ + CORE_ADDR funaddr = 0; /* If it's a member function, just look at the function part of it. */ -- cgit v1.1