diff options
author | Anthony Green <green@moxielogic.com> | 2012-10-27 15:57:12 +0000 |
---|---|---|
committer | Anthony Green <green@moxielogic.com> | 2012-10-27 15:57:12 +0000 |
commit | ffa2dd6787abb5393f9b77c0fcaa6b690a45d907 (patch) | |
tree | 7bcbb94a5bf40ce0498d8dbad2eea3ecdea3a896 /newlib/libc/machine | |
parent | f71f133bda3077c835de51e76e83f674d45297ae (diff) | |
download | cygnal-ffa2dd6787abb5393f9b77c0fcaa6b690a45d907.tar.gz cygnal-ffa2dd6787abb5393f9b77c0fcaa6b690a45d907.tar.bz2 cygnal-ffa2dd6787abb5393f9b77c0fcaa6b690a45d907.zip |
Minor optimization and bug fix for moxie.
Diffstat (limited to 'newlib/libc/machine')
-rw-r--r-- | newlib/libc/machine/moxie/setjmp.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/machine/moxie/setjmp.S b/newlib/libc/machine/moxie/setjmp.S index 991b91566..6c2c015e3 100644 --- a/newlib/libc/machine/moxie/setjmp.S +++ b/newlib/libc/machine/moxie/setjmp.S @@ -51,7 +51,7 @@ setjmp: sto.l 0x34($r0), $r13 sto.l 0x38($r0), $sp sto.l 0x3c($r0), $fp - ldi.l $r0, 0x00 + xor $r0, $r0 ret .Lend1: .size setjmp,.Lend1-setjmp |