numeric-tools-0.1.0.0: cbits/ieee.c
double numeric_tools_representable_delta(double x, double h)
{
/* temp is volatile to force loading from registers to memory. */
volatile double temp = x + h;
return temp - x;
}
double numeric_tools_representable_delta(double x, double h)
{
/* temp is volatile to force loading from registers to memory. */
volatile double temp = x + h;
return temp - x;
}