1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

Remove trailing whitespace.

This commit is contained in:
Joseph Myers
2013-06-05 20:44:03 +00:00
parent 5556231db2
commit 9c84384cc1
192 changed files with 1185 additions and 991 deletions

View File

@ -244,7 +244,7 @@ float build_float(const char *s, const char *e, const char *f)
return u.flt;
}
double build_double(const char *s, const char *e, const char *f)
{
union _FP_UNION_D u;
@ -264,10 +264,10 @@ double build_double(const char *s, const char *e, const char *f)
#else
u.bits.frac = strtoul(f, 0, 16);
#endif
return u.flt;
}
/*======================================================================*/
fpu_control_t fcw0, fcw1;
@ -303,7 +303,7 @@ void test_double_arith(double (*tf)(double, double),
_FPU_GETCW(fcw0);
fcw1 = ((fcw0 & ~_FPU_EXTENDED) | _FPU_DOUBLE);
_FPU_SETCW(fcw1);
#endif
#endif
rr = (*rf)(x, y);
#ifdef __i386__
_FPU_SETCW(fcw0);
@ -386,7 +386,7 @@ void test_float_int_conv(float x)
printf("\n\ttrue = %d\n\tfalse = %d\n", rr, tr);
}
}
void test_double_int_conv(double x)
{
int tr, rr;