diff options
author | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-25 09:24:10 +0000 |
---|---|---|
committer | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-25 09:24:10 +0000 |
commit | 5f55356392b4ab0c6f31ddb9b8b4aecb21aa86fc (patch) | |
tree | 91e5427c2edc0eb0a325e2b7e0c4034601f8ab99 /libstdc++-v3/libmath | |
parent | 4fd0034becd2320177c4db40c8feb20788547101 (diff) | |
download | gcc-5f55356392b4ab0c6f31ddb9b8b4aecb21aa86fc.tar.gz |
2001-02-25 Greg Freemyer <freemyer@NorcrossGroup.com>
* libmath/mathconf.h (GET_LDOUBLE_MSW64): Fix thinko.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40051 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/libmath')
-rw-r--r-- | libstdc++-v3/libmath/mathconf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++-v3/libmath/mathconf.h b/libstdc++-v3/libmath/mathconf.h index 3f8344cd8b8..a730770a256 100644 --- a/libstdc++-v3/libmath/mathconf.h +++ b/libstdc++-v3/libmath/mathconf.h @@ -70,7 +70,7 @@ typedef unsigned int U_int32_t __attribute ((mode (SI))); typedef int Int32_t __attribute ((mode (SI))); 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 # include <nan.h> @@ -260,7 +260,7 @@ typedef union do { \ ieee_quad_double_shape_type qw_u; \ qw_u.value = (d); \ - (ix0) = qw_u.parts64.msw; \ + (msw) = qw_u.parts64.msw; \ } while (0) |