diff options
Diffstat (limited to 'gcc/fortran')
-rw-r--r-- | gcc/fortran/ChangeLog | 19 | ||||
-rw-r--r-- | gcc/fortran/f95-lang.c | 2 |
2 files changed, 13 insertions, 8 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 377fe18..61297f9 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,12 +1,17 @@ +2010-04-18 Eric Botcazou <ebotcazou@adacore.com> + + * f95-lang.c (gfc_init_decl_processing): Remove second argument in call + to build_common_tree_nodes. + 2010-04-17 Steven G. Kargl <kargl@gcc.gnu.org> - PR fortran/31538 - * fortran/trans-array.c (gfc_conv_ss_startstride): Remove the use of - gfc_msg_bounds by using 'Array bound mismatch' directly. - (gfc_trans_dummy_array_bias): Remove the use of gfc_msg_bounds. Reword - error message to include the mismatch in the extent of array bound. - * fortran/trans.c: Remove gfc_msg_bounds. It is only used in one place. - * fortran/trans.h: Remove extern definition of gfc_msg_bounds. + PR fortran/31538 + * fortran/trans-array.c (gfc_conv_ss_startstride): Remove the use of + gfc_msg_bounds by using 'Array bound mismatch' directly. + (gfc_trans_dummy_array_bias): Remove the use of gfc_msg_bounds. Reword + error message to include the mismatch in the extent of array bound. + * fortran/trans.c: Remove gfc_msg_bounds. It is only used in one place. + * fortran/trans.h: Remove extern definition of gfc_msg_bounds. 2010-04-17 Jerry DeLisle <jvdelisle@gcc.gnu.org> diff --git a/gcc/fortran/f95-lang.c b/gcc/fortran/f95-lang.c index 5d2846c..96ff8bb 100644 --- a/gcc/fortran/f95-lang.c +++ b/gcc/fortran/f95-lang.c @@ -542,7 +542,7 @@ gfc_init_decl_processing (void) /* Build common tree nodes. char_type_node is unsigned because we only use it for actual characters, not for INTEGER(1). Also, we want double_type_node to actually have double precision. */ - build_common_tree_nodes (false, false); + build_common_tree_nodes (false); /* x86_64 mingw32 has a sizetype of "unsigned long long", most other hosts have a sizetype of "unsigned long". Therefore choose the correct size in mostly target independent way. */ |