diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-06-05 20:26:40 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-06-05 20:26:40 +0000 |
commit | 5556231db2301917cd14a7450de4eba2368c9763 (patch) | |
tree | 2456b4a2ec7e4377c420b2f94285dddb53784e5f /ports/sysdeps/alpha/fpu | |
parent | 869378a5bf1d415f52c14d9697b886d8143a73e1 (diff) | |
download | glibc-5556231db2301917cd14a7450de4eba2368c9763.tar.gz glibc-5556231db2301917cd14a7450de4eba2368c9763.tar.xz glibc-5556231db2301917cd14a7450de4eba2368c9763.zip |
Remove trailing whitespace in ports.
Diffstat (limited to 'ports/sysdeps/alpha/fpu')
-rw-r--r-- | ports/sysdeps/alpha/fpu/cfloat-compat.h | 2 | ||||
-rw-r--r-- | ports/sysdeps/alpha/fpu/s_roundf.c | 2 | ||||
-rw-r--r-- | ports/sysdeps/alpha/fpu/s_trunc.c | 2 | ||||
-rw-r--r-- | ports/sysdeps/alpha/fpu/s_truncf.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/ports/sysdeps/alpha/fpu/cfloat-compat.h b/ports/sysdeps/alpha/fpu/cfloat-compat.h index 858f0c5780..fd0dacfb36 100644 --- a/ports/sysdeps/alpha/fpu/cfloat-compat.h +++ b/ports/sysdeps/alpha/fpu/cfloat-compat.h @@ -16,7 +16,7 @@ License along with the GNU C Library. If not, see <http://www.gnu.org/licenses/>. */ -/* The behaviour of complex float changed between GCC 3.3 and 3.4. +/* The behaviour of complex float changed between GCC 3.3 and 3.4. In 3.3 and before (below, complex version 1, or "c1"), complex float values were packed into one floating point register. diff --git a/ports/sysdeps/alpha/fpu/s_roundf.c b/ports/sysdeps/alpha/fpu/s_roundf.c index e1d97d2e5f..1d22f97833 100644 --- a/ports/sysdeps/alpha/fpu/s_roundf.c +++ b/ports/sysdeps/alpha/fpu/s_roundf.c @@ -25,7 +25,7 @@ __roundf (float x) const float almost_half = 0x1.fffffep-2; const float two23 = 0x1.0p23; float r, tmp; - + __asm ( #ifdef _IEEE_FP_INEXACT "adds/suic %2, %3, %1\n\tsubs/suic %1, %3, %0" diff --git a/ports/sysdeps/alpha/fpu/s_trunc.c b/ports/sysdeps/alpha/fpu/s_trunc.c index 2413353137..19f56d9eb5 100644 --- a/ports/sysdeps/alpha/fpu/s_trunc.c +++ b/ports/sysdeps/alpha/fpu/s_trunc.c @@ -27,7 +27,7 @@ __trunc (double x) { double two52 = copysign (0x1.0p52, x); double r, tmp; - + __asm ( #ifdef _IEEE_FP_INEXACT "addt/suic %2, %3, %1\n\tsubt/suic %1, %3, %0" diff --git a/ports/sysdeps/alpha/fpu/s_truncf.c b/ports/sysdeps/alpha/fpu/s_truncf.c index 3e13e87c57..aac47f719c 100644 --- a/ports/sysdeps/alpha/fpu/s_truncf.c +++ b/ports/sysdeps/alpha/fpu/s_truncf.c @@ -26,7 +26,7 @@ __truncf (float x) { float two23 = copysignf (0x1.0p23, x); float r, tmp; - + __asm ( #ifdef _IEEE_FP_INEXACT "adds/suic %2, %3, %1\n\tsubs/suic %1, %3, %0" |