diff options
author | Anthony Green <green@moxielogic.com> | 2014-12-27 12:18:56 +0000 |
---|---|---|
committer | Anthony Green <green@moxielogic.com> | 2014-12-27 12:18:56 +0000 |
commit | 47c98af2ba38108c60e666ec699de03747017bcb (patch) | |
tree | 3e05c847115f7f203cf772e8eb9d6cbf4e446c12 | |
parent | 0615b4bb5f38a738377d4856aed167f0ab6aa52d (diff) | |
download | newlib-47c98af2ba38108c60e666ec699de03747017bcb.zip newlib-47c98af2ba38108c60e666ec699de03747017bcb.tar.gz newlib-47c98af2ba38108c60e666ec699de03747017bcb.tar.bz2 |
The moxie sub.l instruction is now just sub.
-rw-r--r-- | libgloss/ChangeLog | 4 | ||||
-rw-r--r-- | libgloss/moxie/crt0.S | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index 1c6bc6b..a414afd 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,7 @@ +2014-12-27 Anthony Green <green@moxielogic.com> + + * moxie/crt0.S (_start): sub.l is now sub. + 2014-12-15 Stefan Wallentowitz <stefan.wallentowitz@tum.de> * or1k/Makefile.in: Build and install board libraries diff --git a/libgloss/moxie/crt0.S b/libgloss/moxie/crt0.S index 44616a8..17c6b98 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. */ |