From owner-svn-src-head@FreeBSD.ORG Sun Jun 6 16:13:51 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 31D70106564A; Sun, 6 Jun 2010 16:13:51 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (unknown [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 211A78FC23; Sun, 6 Jun 2010 16:13:50 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o56GDodZ090492; Sun, 6 Jun 2010 16:13:50 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o56GDoYi090490; Sun, 6 Jun 2010 16:13:50 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <201006061613.o56GDoYi090490@svn.freebsd.org> From: Konstantin Belousov Date: Sun, 6 Jun 2010 16:13:50 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r208877 - head/sys/amd64/amd64 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Jun 2010 16:13:51 -0000 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();