* som.c (som_sizeof_headers): Add missing prototype.
(som_set_arch_mach): Do not abort.
This commit is contained in:
parent
0ffa24b979
commit
2212ff9277
2 changed files with 6 additions and 4 deletions
|
@ -1,5 +1,8 @@
|
||||||
Fri Nov 12 15:29:36 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
|
Fri Nov 12 15:29:36 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
|
||||||
|
|
||||||
|
* som.c (som_sizeof_headers): Add missing prototype.
|
||||||
|
(som_set_arch_mach): Do not abort.
|
||||||
|
|
||||||
* som.c (som_prep_headers): New function.
|
* som.c (som_prep_headers): New function.
|
||||||
|
|
||||||
* som.c (som_count_spaces): New function.
|
* som.c (som_count_spaces): New function.
|
||||||
|
|
|
@ -154,7 +154,8 @@ static unsigned long som_count_subspaces PARAMS ((bfd *));
|
||||||
static int compare_syms PARAMS ((asymbol **, asymbol **));
|
static int compare_syms PARAMS ((asymbol **, asymbol **));
|
||||||
static unsigned long som_compute_checksum PARAMS ((bfd *));
|
static unsigned long som_compute_checksum PARAMS ((bfd *));
|
||||||
static boolean som_prep_headers PARAMS ((bfd *));
|
static boolean som_prep_headers PARAMS ((bfd *));
|
||||||
|
static int som_sizeof_headers PARAMS ((bfd *, boolean));
|
||||||
|
|
||||||
static reloc_howto_type som_hppa_howto_table[] =
|
static reloc_howto_type som_hppa_howto_table[] =
|
||||||
{
|
{
|
||||||
{R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
|
{R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
|
||||||
|
@ -1757,9 +1758,7 @@ som_set_arch_mach (abfd, arch, machine)
|
||||||
enum bfd_architecture arch;
|
enum bfd_architecture arch;
|
||||||
unsigned long machine;
|
unsigned long machine;
|
||||||
{
|
{
|
||||||
fprintf (stderr, "som_set_arch_mach unimplemented\n");
|
/* Allow any architecture to be supported by the SOM backend */
|
||||||
fflush (stderr);
|
|
||||||
/* Allow any architecture to be supported by the som backend */
|
|
||||||
return bfd_default_set_arch_mach (abfd, arch, machine);
|
return bfd_default_set_arch_mach (abfd, arch, machine);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue