re PR libfortran/45436 (Failed to bootstrap)

PR fortran/45436
	* trans-types.c (gfc_init_kinds): Disable TFmode.

From-SVN: r163611
This commit is contained in:
Francois-Xavier Coudert 2010-08-28 07:35:10 +00:00 committed by François-Xavier Coudert
parent f06e400fc3
commit e84f122fcc
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2010-08-28 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
PR fortran/45436
* trans-types.c (gfc_init_kinds): Disable TFmode.
2010-08-27 Janus Weil <janus@gcc.gnu.org>
PR fortran/45432

View File

@ -410,12 +410,11 @@ gfc_init_kinds (void)
/* Only let float, double, long double and __float128 go through.
Runtime support for others is not provided, so they would be
useless. TFmode support is only enabled with option
-fsoft-float. */
useless. TODO: TFmode support should be enabled once libgfortran
support is done. */
if (mode != TYPE_MODE (float_type_node)
&& (mode != TYPE_MODE (double_type_node))
&& (mode != TYPE_MODE (long_double_type_node))
&& (mode != TFmode))
&& (mode != TYPE_MODE (long_double_type_node)))
continue;
/* Let the kind equal the precision divided by 8, rounding up. Again,