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:
@ -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;
|
||||
|
Reference in New Issue
Block a user