svn commit: r208877 - head/sys/amd64/amd64

Konstantin Belousov kib at FreeBSD.org
Sun Jun 6 16:13:51 UTC 2010


Author: kib
Date: Sun Jun  6 16:13:50 2010
New Revision: 208877
URL: http://svn.freebsd.org/changeset/base/208877

Log:
  Style-compilant order of declarations.
  
  Noted by:	bde
  MFC after:	1 month

Modified:
  head/sys/amd64/amd64/fpu.c

Modified: head/sys/amd64/amd64/fpu.c
==============================================================================
--- head/sys/amd64/amd64/fpu.c	Sun Jun  6 16:11:16 2010	(r208876)
+++ head/sys/amd64/amd64/fpu.c	Sun Jun  6 16:13:50 2010	(r208877)
@@ -453,8 +453,8 @@ fpudrop()
 int
 fpugetuserregs(struct thread *td, struct savefpu *addr)
 {
-	register_t s;
 	struct pcb *pcb;
+	register_t s;
 
 	pcb = td->td_pcb;
 	if ((pcb->pcb_flags & PCB_USERFPUINITDONE) == 0) {
@@ -477,8 +477,8 @@ fpugetuserregs(struct thread *td, struct
 int
 fpugetregs(struct thread *td, struct savefpu *addr)
 {
-	register_t s;
 	struct pcb *pcb;
+	register_t s;
 
 	pcb = td->td_pcb;
 	if ((pcb->pcb_flags & PCB_FPUINITDONE) == 0) {
@@ -504,8 +504,8 @@ fpugetregs(struct thread *td, struct sav
 void
 fpusetuserregs(struct thread *td, struct savefpu *addr)
 {
-	register_t s;
 	struct pcb *pcb;
+	register_t s;
 
 	pcb = td->td_pcb;
 	s = intr_disable();
@@ -525,8 +525,8 @@ fpusetuserregs(struct thread *td, struct
 void
 fpusetregs(struct thread *td, struct savefpu *addr)
 {
-	register_t s;
 	struct pcb *pcb;
+	register_t s;
 
 	pcb = td->td_pcb;
 	s = intr_disable();


More information about the svn-src-all mailing list