Skip to content
Snippets Groups Projects
Commit f5500e44 authored by Greg Freemyer's avatar Greg Freemyer Committed by Gabriel Dos Reis
Browse files

mathconf.h (GET_LDOUBLE_MSW64): Fix thinko.

2001-02-25  Greg Freemyer <freemyer@NorcrossGroup.com>

	* libmath/mathconf.h (GET_LDOUBLE_MSW64): Fix thinko.

From-SVN: r40051
parent 2dae5982
No related branches found
No related tags found
No related merge requests found
2001-02-25 Greg Freemyer <freemyer@NorcrossGroup.com>
* libmath/mathconf.h (GET_LDOUBLE_MSW64): Fix thinko.
2001-02-23 Benjamin Kosnik <bkoz@redhat.com> 2001-02-23 Benjamin Kosnik <bkoz@redhat.com>
* include/bits/codecvt.h: Use __builtin_alloca. * include/bits/codecvt.h: Use __builtin_alloca.
......
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
typedef unsigned int U_int32_t __attribute ((mode (SI))); typedef unsigned int U_int32_t __attribute ((mode (SI)));
typedef int Int32_t __attribute ((mode (SI))); typedef int Int32_t __attribute ((mode (SI)));
typedef unsigned int U_int64_t __attribute ((mode (DI))); typedef unsigned int U_int64_t __attribute ((mode (DI)));
typedef int Uint64_t __attribute ((mode (DI))); typedef int Int64_t __attribute ((mode (DI)));
#ifdef _GLIBCPP_HAVE_NAN_H #ifdef _GLIBCPP_HAVE_NAN_H
# include <nan.h> # include <nan.h>
...@@ -260,7 +260,7 @@ typedef union ...@@ -260,7 +260,7 @@ typedef union
do { \ do { \
ieee_quad_double_shape_type qw_u; \ ieee_quad_double_shape_type qw_u; \
qw_u.value = (d); \ qw_u.value = (d); \
(ix0) = qw_u.parts64.msw; \ (msw) = qw_u.parts64.msw; \
} while (0) } while (0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment