Modified Files:

ChangeLog i386os9k.c Makefile.in

        * i386os9k.c: use new functions bfd_set_error and bfd_get_error.
        * Makefile.in: delete an extra blank.
This commit is contained in:
Kung Hsu
1994-03-01 21:39:28 +00:00
parent f57318eba5
commit bb37e7161e
2 changed files with 6 additions and 4 deletions

View File

@ -1,5 +1,7 @@
Tue Mar 1 13:06:53 1994 Kung Hsu (kung@mexican.cygnus.com)
* i386os9k.c: use new functions bfd_set_error and bfd_get_error.
* Makefile.in: delete an extra blank.
* configure.in : Add i396os9k_vec.
Mon Feb 28 15:41:01 1994 Kung Hsu (kung@mexican.cygnus.com)

View File

@ -107,13 +107,13 @@ os9k_object_p (abfd)
if (bfd_read ((PTR) &exec_bytes, MHCOM_BYTES_SIZE, 1, abfd)
!= MHCOM_BYTES_SIZE) {
bfd_error = wrong_format;
bfd_set_error (bfd_error_wrong_format);
return 0;
}
anexec.a_info = bfd_h_get_16 (abfd, exec_bytes.m_sync);
if (N_BADMAG (anexec)) {
bfd_error = wrong_format;
bfd_set_error (bfd_error_wrong_format);
return 0;
}
@ -184,7 +184,7 @@ os9k_mkobject (abfd)
rawptr = (struct bout_data_struct *) bfd_zalloc (abfd, sizeof (struct bout_data_struct));
if (rawptr == NULL) {
bfd_error = no_memory;
bfd_set_error (bfd_error_no_memory);
return false;
}
@ -263,7 +263,7 @@ os9k_set_section_contents (abfd, section, location, offset, count)
if (abfd->output_has_begun == false) { /* set by bfd.c handler */
if ((obj_textsec (abfd) == NULL) || (obj_datasec (abfd) == NULL) /*||
(obj_textsec (abfd)->_cooked_size == 0) || (obj_datasec (abfd)->_cooked_size == 0)*/) {
bfd_error = invalid_operation;
bfd_set_error (bfd_error_invalid_operation);
return false;
}