Tidy up ia32_sysvec sv_flags setting

Use the same approach as sys/arm/arm/elf_machdep.c to avoid an odd-
looking , on a separate line.
This commit is contained in:
Ed Maste 2016-10-20 20:29:54 +00:00
parent 8e71e1129f
commit 5503201d98
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=307688

View File

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