From: Pierre Muller Date: Wed, 21 Apr 2010 08:44:51 +0000 (+0000) Subject: Fix compilation warning on gcc-4.1.2. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=57174f3173f42762234548edd64f0a893edbcd9b;p=binutils-gdb.git Fix compilation warning on gcc-4.1.2. * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Initialize local variable`pc' to zero. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a939f74ec1b..8f3db88cf54 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2010-04-21 Pierre Muller + + Fix compilation warning on gcc-4.1.2. + * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Initialize + local variable`pc' to zero. + 2010-04-20 Joel Brobecker Implement thread support with core files on alpha-tru64. diff --git a/gdb/rs6000-aix-tdep.c b/gdb/rs6000-aix-tdep.c index 927cfe2da20..b7ffc8e51d3 100644 --- a/gdb/rs6000-aix-tdep.c +++ b/gdb/rs6000-aix-tdep.c @@ -583,7 +583,7 @@ rs6000_convert_from_func_ptr_addr (struct gdbarch *gdbarch, the target address itself points to a section that is executable. */ if (s && (s->the_bfd_section->flags & SEC_CODE) == 0) { - CORE_ADDR pc; + CORE_ADDR pc = 0; struct obj_section *pc_section; struct gdb_exception e;