Fix wrong identifier on .end directive. The SYSCALL macro does name

mangling and creates an .ent directive with the mangled name.
This commit is contained in:
Marcel Moolenaar 2003-08-16 18:59:08 +00:00
parent ba4b44f1c4
commit d4c89eb0a1
4 changed files with 4 additions and 4 deletions

View file

@ -35,4 +35,4 @@ __FBSDID("$FreeBSD$");
SYSCALL(vfork)
cmovne a4, zero, v0 /* a4 (rv[1]) != 0, child */
RET
END(vfork)
END(__sys_vfork)

View file

@ -35,4 +35,4 @@ __FBSDID("$FreeBSD$");
SYSCALL(fork)
cmovne a4, zero, v0 /* a4 (rv[1]) != 0, child */
RET
END(fork)
END(__sys_fork)

View file

@ -37,4 +37,4 @@ SYSCALL(pipe)
stl a4, 4(a0)
mov zero, v0
RET
END(pipe)
END(__sys_pipe)

View file

@ -37,4 +37,4 @@ IMPORT(_logname_valid, 4) /* in _getlogin() */
SYSCALL(setlogin)
stl zero, _logname_valid /* clear it */
RET
END(setlogin)
END(__sys_setlogin)