+2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
+
+ Fix compilation warning on gcc-3.4.
+ * exec.c (print_section_info): Move the `displacement' variable
+ initialization to its declaration.
+
2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
* gdb-gdb.py (StructMainTypePrettyPrinter): Fix TYPE_CODE_RANGE
printf_filtered (_("file type %s.\n"), bfd_get_target (abfd));
if (abfd == exec_bfd)
{
- bfd_vma displacement;
+ /* gcc-3.4 does not like the initialization in <p == t->sections_end>. */
+ bfd_vma displacement = 0;
for (p = t->sections; p < t->sections_end; p++)
{
}
}
if (p == t->sections_end)
- {
- warning (_("Cannot find section for the entry point of %s.\n"),
- bfd_get_filename (abfd));
- displacement = 0;
- }
+ warning (_("Cannot find section for the entry point of %s.\n"),
+ bfd_get_filename (abfd));
printf_filtered (_("\tEntry point: %s\n"),
paddress (gdbarch, (bfd_get_start_address (abfd)