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]

read.c obvious fix


I have just committed the following patch under the "obvious fix"
rule.  It corrects a spelling mistake and a mistruth. :-)

Ben


2001-07-05  Ben Elliston  <bje@redhat.com>

	* read.c (s_fill): Correct spelling error in comments.

Index: read.c
===================================================================
RCS file: /cvs/src/src/gas/read.c,v
retrieving revision 1.40
diff -u -c -r1.40 read.c
*** read.c	2001/05/31 00:00:30	1.40
--- read.c	2001/07/05 00:34:26
***************
*** 1753,1762 ****
        memset (p, 0, (unsigned int) size);
  
        /* The magic number BSD_FILL_SIZE_CROCK_4 is from BSD 4.2 VAX
!          flavoured AS.  The following bizzare behaviour is to be
           compatible with above.  I guess they tried to take up to 8
           bytes from a 4-byte expression and they forgot to sign
!          extend. Un*x Sux.  */
  #define BSD_FILL_SIZE_CROCK_4 (4)
        md_number_to_chars (p, (valueT) fill,
  			  (size > BSD_FILL_SIZE_CROCK_4
--- 1753,1762 ----
        memset (p, 0, (unsigned int) size);
  
        /* The magic number BSD_FILL_SIZE_CROCK_4 is from BSD 4.2 VAX
!          flavoured AS.  The following bizarre behaviour is to be
           compatible with above.  I guess they tried to take up to 8
           bytes from a 4-byte expression and they forgot to sign
!          extend.  */
  #define BSD_FILL_SIZE_CROCK_4 (4)
        md_number_to_chars (p, (valueT) fill,
  			  (size > BSD_FILL_SIZE_CROCK_4


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