aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/mips
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/mips')
-rw-r--r--sysdeps/unix/mips/brk.S3
-rw-r--r--sysdeps/unix/mips/fork.S1
-rw-r--r--sysdeps/unix/mips/pipe.S1
-rw-r--r--sysdeps/unix/mips/sigreturn.S1
-rw-r--r--sysdeps/unix/mips/sysdep.S1
-rw-r--r--sysdeps/unix/mips/wait.S1
6 files changed, 7 insertions, 1 deletions
diff --git a/sysdeps/unix/mips/brk.S b/sysdeps/unix/mips/brk.S
index 1754c0c4de..9c4ee26edc 100644
--- a/sysdeps/unix/mips/brk.S
+++ b/sysdeps/unix/mips/brk.S
@@ -30,7 +30,7 @@ Cambridge, MA 02139, USA. */
.sdata
ENTRY(__curbrk)
.word __end
-
+ .end __curbrk
.text
.set noreorder
.set noat
@@ -63,5 +63,6 @@ error: j syscall_error
nop
nop
nop
+ .end __brk
weak_alias (__brk, brk)
diff --git a/sysdeps/unix/mips/fork.S b/sysdeps/unix/mips/fork.S
index 2347bf4d50..17efcc92a8 100644
--- a/sysdeps/unix/mips/fork.S
+++ b/sysdeps/unix/mips/fork.S
@@ -25,5 +25,6 @@ SYSCALL__ (fork, 0)
move v0, zero
parent:
ret
+ .end __fork
weak_alias (__fork, fork)
diff --git a/sysdeps/unix/mips/pipe.S b/sysdeps/unix/mips/pipe.S
index f8ce56b118..b9f376d365 100644
--- a/sysdeps/unix/mips/pipe.S
+++ b/sysdeps/unix/mips/pipe.S
@@ -27,5 +27,6 @@ SYSCALL__ (pipe, 1)
j ra
move v0, zero
nop
+ .end __pipe
weak_alias (__pipe, pipe)
diff --git a/sysdeps/unix/mips/sigreturn.S b/sysdeps/unix/mips/sigreturn.S
index 1e76bf5f99..70ae0c2749 100644
--- a/sysdeps/unix/mips/sigreturn.S
+++ b/sysdeps/unix/mips/sigreturn.S
@@ -25,5 +25,6 @@ Cambridge, MA 02139, USA. */
ENTRY(__sigreturn)
li v0, SYS_sigreturn
syscall
+ .end __sigreturn
weak_alias (__sigreturn, sigreturn)
diff --git a/sysdeps/unix/mips/sysdep.S b/sysdeps/unix/mips/sysdep.S
index 21bdf234f9..f17ba44341 100644
--- a/sysdeps/unix/mips/sysdep.S
+++ b/sysdeps/unix/mips/sysdep.S
@@ -39,3 +39,4 @@ skip:
/* And just kick back a -1. */
j ra
li v0, -1
+ .end syscall_error
diff --git a/sysdeps/unix/mips/wait.S b/sysdeps/unix/mips/wait.S
index 63bce849d4..f1f4f9b42c 100644
--- a/sysdeps/unix/mips/wait.S
+++ b/sysdeps/unix/mips/wait.S
@@ -40,5 +40,6 @@ noerror:
nop
noarg:
ret
+ .end __wait
weak_alias (__wait, wait)