Index: hppa-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/hppa-tdep.c,v retrieving revision 1.28 diff -c -3 -p -r1.28 hppa-tdep.c *** hppa-tdep.c 24 Oct 2002 21:02:53 -0000 1.28 --- hppa-tdep.c 30 Oct 2002 08:24:34 -0000 *************** extern int hp_som_som_object_present; *** 149,157 **** /* In breakpoint.c */ extern int exception_catchpoints_are_fragile; - /* This is defined in valops.c. */ - extern struct value *find_function_in_inferior (char *); - /* Should call_function allocate stack space for a struct return? */ int hppa_use_struct_convention (int gcc_p, struct type *type) --- 149,154 ---- *************** static CORE_ADDR low_text_segment_addres *** 300,306 **** static void record_text_segment_lowaddr (bfd *abfd, asection *section, void *ignored) { ! if ((section->flags & (SEC_ALLOC | SEC_LOAD | SEC_READONLY) == (SEC_ALLOC | SEC_LOAD | SEC_READONLY)) && section->vma < low_text_segment_address) low_text_segment_address = section->vma; --- 297,303 ---- static void record_text_segment_lowaddr (bfd *abfd, asection *section, void *ignored) { ! if (((section->flags & (SEC_ALLOC | SEC_LOAD | SEC_READONLY)) == (SEC_ALLOC | SEC_LOAD | SEC_READONLY)) && section->vma < low_text_segment_address) low_text_segment_address = section->vma;