> +#define PHP_DOUBLE_INFINITY_HIGH 0x7ff00000
> +#define PHP_DOUBLE_QUIET_NAN_HIGH 0xfff80000
> +
> +static double php_get_inf()
> +{
> +#if defined(__i386__) || defined(_X86_) || defined(ALPHA) ||
defined(_ALPHA) || defined(__alpha)
> + double val;
> + ((php_uint32*)&val)[1] = PHP_DOUBLE_QUIET_NAN_HIGH;
^^^^^^^^^^
Should this one really be PHP_DOUBLE_INFINITY_HIGH ?--Wez. -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
