From 2de38f7ec786a287d2fffe9231f9c25e962ce506 Mon Sep 17 00:00:00 2001 From: Konstantin Belousov Date: Tue, 19 Jan 2016 08:09:09 +0000 Subject: [PATCH] Adjust i386 comment to match amd64 one after r294311. Sponsored by: The FreeBSD Foundation MFC after: 2 weeks --- sys/i386/isa/npx.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/sys/i386/isa/npx.c b/sys/i386/isa/npx.c index ed21a183222..944ebf7c474 100644 --- a/sys/i386/isa/npx.c +++ b/sys/i386/isa/npx.c @@ -494,11 +494,12 @@ npxinitstate(void *arg __unused) /* * The fninit instruction does not modify XMM - * registers. The fpusave call dumped the garbage - * contained in the registers after reset to the - * initial state saved. Clear XMM registers file - * image to make the startup program state and signal - * handler XMM register content predictable. + * registers or x87 registers (MM/ST). The fpusave + * call dumped the garbage contained in the registers + * after reset to the initial state saved. Clear XMM + * and x87 registers file image to make the startup + * program state and signal handler XMM/x87 register + * content predictable. */ bzero(npx_initialstate->sv_xmm.sv_fp, sizeof(npx_initialstate->sv_xmm.sv_fp));