Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Green <green@moxielogic.com>2014-12-27 15:18:56 +0300
committerAnthony Green <green@moxielogic.com>2014-12-27 15:18:56 +0300
commit47c98af2ba38108c60e666ec699de03747017bcb (patch)
tree3e05c847115f7f203cf772e8eb9d6cbf4e446c12 /libgloss/moxie
parent0615b4bb5f38a738377d4856aed167f0ab6aa52d (diff)
The moxie sub.l instruction is now just sub.
Diffstat (limited to 'libgloss/moxie')
-rw-r--r--libgloss/moxie/crt0.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgloss/moxie/crt0.S b/libgloss/moxie/crt0.S
index 44616a82e..17c6b98ab 100644
--- a/libgloss/moxie/crt0.S
+++ b/libgloss/moxie/crt0.S
@@ -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 @@ _start:
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. */