summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2010-06-06 16:13:50 +0000
committerkib <kib@FreeBSD.org>2010-06-06 16:13:50 +0000
commit7efcd15461d6e9902d80b62ffc8b447ddd83ea08 (patch)
treeecb11cabdd366f9f60d028875eb113485728f3fc
parente9703449d0e2bbc8a8f4c37784a856af8e7ecf15 (diff)
downloadFreeBSD-src-7efcd15461d6e9902d80b62ffc8b447ddd83ea08.zip
FreeBSD-src-7efcd15461d6e9902d80b62ffc8b447ddd83ea08.tar.gz
Style-compilant order of declarations.
Noted by: bde MFC after: 1 month
-rw-r--r--sys/amd64/amd64/fpu.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/amd64/amd64/fpu.c b/sys/amd64/amd64/fpu.c
index d25c486..e1da058 100644
--- a/sys/amd64/amd64/fpu.c
+++ b/sys/amd64/amd64/fpu.c
@@ -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 savefpu *addr)
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 savefpu *addr)
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 savefpu *addr)
void
fpusetregs(struct thread *td, struct savefpu *addr)
{
- register_t s;
struct pcb *pcb;
+ register_t s;
pcb = td->td_pcb;
s = intr_disable();
OpenPOWER on IntegriCloud