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 07:57:35 -0000 *************** extern int hp_som_som_object_present; *** 150,156 **** 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 --- 150,156 ---- extern int exception_catchpoints_are_fragile; /* This is defined in valops.c. */ ! extern struct value *find_function_in_inferior (const char *); /* Should call_function allocate stack space for a struct return? */ int *************** 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; --- 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;