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]

[Patch, libgloss, moxie] adjust for instruction name change


The libgloss change accounts for a moxie instruction name change (sub.l
to sub).  I'm checking it in.

2014-12-27  Anthony Green  <green@moxielogic.com>

        * moxie/crt0.S (_start): sub.l is now sub.


Index: libgloss/moxie/crt0.S
===================================================================
RCS file: /cvs/src/src/libgloss/moxie/crt0.S,v
retrieving revision 1.4
diff -u -r1.4 crt0.S
--- libgloss/moxie/crt0.S	27 Oct 2012 15:57:12 -0000	1.4
+++ libgloss/moxie/crt0.S	27 Dec 2014 12:13:35 -0000
@@ -1,6 +1,6 @@
 /* crt0.S -- startup file for moxie
  * 
- * Copyright (c) 2008, 2009  Anthony Green
+ * Copyright (c) 2008, 2009, 2014  Anthony Green
  *
  * The authors hereby grant permission to use, copy, modify, distribute,
  * and license this software and its documentation for any purpose, provided
@@ -26,7 +26,7 @@
 	ldi.l	$r0, __bss_start__
 	xor	$r1, $r1
 	ldi.l	$r2, __bss_end__
-	sub.l	$r2, $r0
+	sub	$r2, $r0
 	jsra	memset
 
 	/* Call _init to invoke static constructors, etc.  */


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