diff options
author | DJ Delorie <dj@redhat.com> | 2009-04-22 18:57:37 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2009-04-22 18:57:37 +0000 |
commit | 819e57447414b42c74fcf8cf48a227be7d6b09fa (patch) | |
tree | feb5e9b78f5f332feb446681f2854ca3d5675535 | |
parent | 755b125b775637771f1b6e972a88e290a0c39301 (diff) | |
download | cygnal-819e57447414b42c74fcf8cf48a227be7d6b09fa.tar.gz cygnal-819e57447414b42c74fcf8cf48a227be7d6b09fa.tar.bz2 cygnal-819e57447414b42c74fcf8cf48a227be7d6b09fa.zip |
* mep/sim-crt0.S (_start): Fix typo.
-rw-r--r-- | libgloss/ChangeLog | 4 | ||||
-rw-r--r-- | libgloss/mep/sim-crt0.S | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index 3a81aac4e..e61ae17b8 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,7 @@ +2009-04-22 DJ Delorie <dj@redhat.com> + + * mep/sim-crt0.S (_start): Fix typo. + 2009-04-21 DJ Delorie <dj@redhat.com> * mep/Makefile.in (SCRIPTS): Update to new config. diff --git a/libgloss/mep/sim-crt0.S b/libgloss/mep/sim-crt0.S index c96ce2336..02639eb6d 100644 --- a/libgloss/mep/sim-crt0.S +++ b/libgloss/mep/sim-crt0.S @@ -121,7 +121,7 @@ _start: # load ID-specific stack pointer sl2ad3 $0, $0, $sp # $0 = ($0 << 2) + $sp lw $sp,($0) # $sp = *($0) - mov $0,0xfff8 + mov $0,0xfffffff8 and $sp, $0 #ifndef NOVEC |