diff options
author | Andreas Jaeger <aj@suse.de> | 2000-08-21 17:06:46 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-08-21 17:06:46 +0000 |
commit | 528be9fe8e08d78481d681c9ce23af6ba60ed2f5 (patch) | |
tree | 6f267c451b3390f3605f12de48f421166302cd0d /sysdeps/s390/fpu/fpu_control.h | |
parent | b7d2cec07113b7161a99f0fe8ee6234625984fce (diff) | |
download | glibc-528be9fe8e08d78481d681c9ce23af6ba60ed2f5.tar.gz |
Add sys/procfs.h.
Diffstat (limited to 'sysdeps/s390/fpu/fpu_control.h')
-rw-r--r-- | sysdeps/s390/fpu/fpu_control.h | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/sysdeps/s390/fpu/fpu_control.h b/sysdeps/s390/fpu/fpu_control.h index 7552cfa8ff..c3ebb2b6de 100644 --- a/sysdeps/s390/fpu/fpu_control.h +++ b/sysdeps/s390/fpu/fpu_control.h @@ -1,8 +1,8 @@ /* FPU control word definitions. Stub version. - Copyright (C) 1999 Free Software Foundation, Inc. - Contributed by - Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com) and + Copyright (C) 2000 Free Software Foundation, Inc. + Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com) and Martin Schwidefsky (schwidefsky@de.ibm.com). + This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as @@ -35,13 +35,10 @@ typedef unsigned int fpu_control_t; /* Macros for accessing the hardware control word. */ -#define _FPU_GETCW(cw) __asm__ volatile ("efpc %0,0" : "=d" (cw)) -#define _FPU_SETCW(cw) __asm__ volatile ("sfpc %0,0" : : "d" (cw)) +#define _FPU_GETCW(cw) __asm__ volatile ("efpc %0,0" : "=d" (cw)) +#define _FPU_SETCW(cw) __asm__ volatile ("sfpc %0,0" : : "d" (cw)) /* Default control word set at startup. */ extern fpu_control_t __fpu_control; #endif /* _FPU_CONTROL_H */ - - - |