svn commit: r320404 - stable/11/sys/i386/isa

Konstantin Belousov kib at FreeBSD.org
Tue Jun 27 10:50:50 UTC 2017


Author: kib
Date: Tue Jun 27 10:50:48 2017
New Revision: 320404
URL: https://svnweb.freebsd.org/changeset/base/320404

Log:
  MFC r320307:
  Fix indent.
  
  Approved by:	re (marius)

Modified:
  stable/11/sys/i386/isa/npx.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/i386/isa/npx.c
==============================================================================
--- stable/11/sys/i386/isa/npx.c	Tue Jun 27 10:45:13 2017	(r320403)
+++ stable/11/sys/i386/isa/npx.c	Tue Jun 27 10:50:48 2017	(r320404)
@@ -1157,7 +1157,7 @@ npx_set_fpregs_xmm(struct save87 *sv_87, struct savexm
 	for (i = 0; i < 8; ++i) {
 		sv_xmm->sv_fp[i].fp_acc = sv_87->sv_ac[i];
 		if ((penv_87->en_tw & (3 << i * 2)) != (3 << i * 2))
-		    penv_xmm->en_tw |= 1 << i;
+			penv_xmm->en_tw |= 1 << i;
 	}
 }
 


More information about the svn-src-all mailing list