This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

COMMIT: Fix typo in FRV's setjmp.S


Hi Jeff,

  I am applying the patch below as an obvious fix for a typo in the
  FRV's targets setjmp.S file.  The .size directive for the longjmp
  function contained a typo which was reported by the latest version of
  GAS.

Cheers
  Nick

newlib/ChangeLog
2011-03-23  Nick Clifton  <nickc@redhat.com>

	* libc/machine/frv/setjmp.S: Fix typo in .size directive.

Index: newlib/libc/machine/frv/setjmp.S
===================================================================
RCS file: /cvs/src/src/newlib/libc/machine/frv/setjmp.S,v
retrieving revision 1.1
diff -u -3 -p -r1.1 setjmp.S
--- newlib/libc/machine/frv/setjmp.S	18 Jun 2002 21:20:28 -0000	1.1
+++ newlib/libc/machine/frv/setjmp.S	23 Mar 2011 10:56:40 -0000
@@ -123,4 +123,4 @@ EXT(longjmp):
 	cmov	gr9, gr8, cc4, 1
 	ret
 .Lend2:
-	.size	EXT(longjmp),.Lend2-EXT(longjmp2)
+	.size	EXT(longjmp),.Lend2-EXT(longjmp)
  


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