diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2007-05-22 07:00:22 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2007-05-22 07:00:22 +0000 |
commit | dbc30a96988c3dfa9f2587c4691de6f679daf9fd (patch) | |
tree | a18d3c3fac64bdc5c5e791f571236de8cbad79c3 /gcc/ada/misc.c | |
parent | bebb3a98ce0bc52e797e70e16cb1796dfd40998c (diff) | |
download | gcc-dbc30a96988c3dfa9f2587c4691de6f679daf9fd.zip gcc-dbc30a96988c3dfa9f2587c4691de6f679daf9fd.tar.gz gcc-dbc30a96988c3dfa9f2587c4691de6f679daf9fd.tar.bz2 |
* misc.c (enumerate_modes): Consider log2_b to always be one.
From-SVN: r124938
Diffstat (limited to 'gcc/ada/misc.c')
-rw-r--r-- | gcc/ada/misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/misc.c b/gcc/ada/misc.c index db39179..084c21a 100644 --- a/gcc/ada/misc.c +++ b/gcc/ada/misc.c @@ -896,7 +896,7 @@ enumerate_modes (void (*f) (int, int, int, int, int, int, unsigned int)) { const struct real_format *fmt = REAL_MODE_FORMAT (inner_mode); - mantissa = fmt->p * fmt->log2_b; + mantissa = fmt->p; } if (!skip_p && j != VOIDmode) |