This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Trivial elf32-arm.h patch



On an arm-elf chain, I'm getting warnings like:

arm-elf-ld: Warning: foo.o does not support interworking, whereas
bar.x0 does not

I guess this patch counts as obviously correct, not sure it's worth a
ChangeLog really.  But please install if OK.

Richard

2001-03-16  Richard Sandiford  <rsandifo@redhat.com>

	* elf32-arm.h (elf32_arm_merge_private_bfd_data): Fix warning.

Index: elf32-arm.h
===================================================================
RCS file: /cvs/src/src/bfd/elf32-arm.h,v
retrieving revision 1.48
diff -c -p -d -r1.48 elf32-arm.h
*** elf32-arm.h	2001/03/11 13:10:51	1.48
--- elf32-arm.h	2001/03/16 13:38:39
*************** Warning: %s %s interworking, whereas %s
*** 2176,2182 ****
  			  bfd_get_filename (ibfd),
  	  in_flags & EF_ARM_INTERWORK ? _("supports") : _("does not support"),
  			  bfd_get_filename (obfd),
! 		    out_flags & EF_ARM_INTERWORK ? _("does not") : _("does"));
      }

    return flags_compatible;
--- 2176,2182 ----
  			  bfd_get_filename (ibfd),
  	  in_flags & EF_ARM_INTERWORK ? _("supports") : _("does not support"),
  			  bfd_get_filename (obfd),
! 		    out_flags & EF_ARM_INTERWORK ? _("does") : _("does not"));
      }

    return flags_compatible;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]