20000317 sourceware import

This commit is contained in:
Ranjith Kumaran
2000-03-17 22:48:54 +00:00
parent fae4c299f1
commit 03261851a1
420 changed files with 66815 additions and 0 deletions

16
libgloss/m32r/trap0.S Normal file
View File

@ -0,0 +1,16 @@
; Trap 0 handler (syscall interface).
;
; The trap handler returns the result in r0 and the error code (errno value)
; in r2. r1 is reserved in case an 8 byte quantity ever needs to be
; returned in registers.
.text
.global __trap0
__trap0:
trap #0 ; trap 0 returns result in r0, error code in r2
cmpui r2,#1 ; is error code zero?
bc .Lret ; yes, skip setting errno
ld r4,@(sp) ; no, set errno
st r2,@r4
.Lret:
jmp lr ; return to caller