1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-25 11:37:56 +00:00

With the removal of IA64, the only arch which uses ia32 compat is amd64.

Sponsored by:	The FreeBSD Foundation
MFC after:	2 weeks
This commit is contained in:
Konstantin Belousov 2017-03-01 11:39:29 +00:00
parent 10102d1ce4
commit ef130ff64c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=314489

View File

@ -120,11 +120,8 @@ struct sysentvec ia32_freebsd_sysvec = {
.sv_setregs = ia32_setregs,
.sv_fixlimit = ia32_fixlimit,
.sv_maxssiz = &ia32_maxssiz,
.sv_flags =
#ifdef __amd64__
SV_SHP | SV_TIMEKEEP |
#endif
SV_ABI_FREEBSD | SV_IA32 | SV_ILP32,
.sv_flags = SV_ABI_FREEBSD | SV_IA32 | SV_ILP32 |
SV_SHP | SV_TIMEKEEP,
.sv_set_syscall_retval = ia32_set_syscall_retval,
.sv_fetch_syscall_args = ia32_fetch_syscall_args,
.sv_syscallnames = freebsd32_syscallnames,