The caller is expected to set up PIC register corectly before

jumping to .cerror. This means .cerror has to be present in the
same module with its consumers, or bad things will happen.
This commit is contained in:
Alexander Kabaev 2003-09-05 18:08:19 +00:00
parent 5c65194915
commit 48b9d042a8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=119777
2 changed files with 4 additions and 0 deletions

View file

@ -1,6 +1,7 @@
# $FreeBSD$
.PATH: ${.CURDIR}/support ${.CURDIR}/../libc/gen ${.CURDIR}/../libc/string
.PATH: ${.CURDIR}/../libc/${MACHINE_ARCH}/sys
CFLAGS+= -I${.CURDIR}/../libc/${MACHINE_ARCH}
@ -24,6 +25,7 @@ ${SYSCALL_SRC}:
LIBC_OBJS= sigsetops.So \
bcopy.So \
bzero.So \
cerror.So \
memcpy.So \
memset.So \
strcpy.So \

View file

@ -1,6 +1,7 @@
# $FreeBSD$
.PATH: ${.CURDIR}/support ${.CURDIR}/../libc/gen ${.CURDIR}/../libc/string
.PATH: ${.CURDIR}/../libc/${MACHINE_ARCH}/sys
CFLAGS+= -I${.CURDIR}/../libc/${MACHINE_ARCH}
@ -24,6 +25,7 @@ ${SYSCALL_SRC}:
LIBC_OBJS= sigsetops.So \
bcopy.So \
bzero.So \
cerror.So \
memcpy.So \
memset.So \
strcpy.So \