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
path: root/newlib
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2000-09-13 20:15:41 +0400
committerJeff Johnston <jjohnstn@redhat.com>2000-09-13 20:15:41 +0400
commit7f18fcb4cb412959bde4eba2718ee59cf4ad928f (patch)
treec39c01643c583f45537df8b167188c539fc0d6f9 /newlib
parent242361df3660f1baab5d9c511ebb5a142b9e8cb5 (diff)
2000-09-13 Jeff Johnston <jjohnstn@redhat.com>
* libc/machine/v850/setjmp.S: Fixed tab problems caused by clipping patch from e-mail reader.
Diffstat (limited to 'newlib')
-rw-r--r--newlib/ChangeLog5
-rw-r--r--newlib/libc/machine/v850/setjmp.S14
2 files changed, 12 insertions, 7 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index e7801fd66..ea51457e8 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,8 @@
+2000-09-13 Jeff Johnston <jjohnstn@redhat.com>
+
+ * libc/machine/v850/setjmp.S: Fixed tab problems caused by
+ clipping patch from e-mail reader.
+
2000-09-13 Will Cohen <wcohen@redhat.com>
* libc/machine/v850/setjmp.S (_setjmp): Save r1 rather than r0.
diff --git a/newlib/libc/machine/v850/setjmp.S b/newlib/libc/machine/v850/setjmp.S
index fb1570177..4b0153749 100644
--- a/newlib/libc/machine/v850/setjmp.S
+++ b/newlib/libc/machine/v850/setjmp.S
@@ -4,7 +4,7 @@
.align 1
.global _setjmp
_setjmp:
- st.w r1,0[r6]
+ st.w r1,0[r6]
st.w r3,4[r6]
st.w r4,8[r6]
st.w r20,12[r6]
@@ -19,12 +19,12 @@ _setjmp:
st.w r29,48[r6]
st.w r30,52[r6]
st.w r31,56[r6]
- mov r0, r10
+ mov r0, r10
jmp [r31]
.global _longjmp
_longjmp:
- ld.w 0[r6],r1
+ ld.w 0[r6],r1
ld.w 4[r6],r3
ld.w 8[r6],r4
ld.w 12[r6],r20
@@ -39,9 +39,9 @@ _longjmp:
ld.w 48[r6],r29
ld.w 52[r6],r30
ld.w 56[r6],r31
- cmp r7, r0
- jne 1f
- mov 1,r7
+ cmp r7, r0
+ jne 1f
+ mov 1,r7
1:
- mov r7, r10
+ mov r7, r10
jmp [r31]