2007-08-31 Paul Thomas <pault@gcc.gnu.org>
commit0ff77f4e7cbec5274d2d5bc91ef6c456393e09ab
authorpault <pault@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 30 Aug 2007 22:10:55 +0000 (30 22:10 +0000)
committerpault <pault@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 30 Aug 2007 22:10:55 +0000 (30 22:10 +0000)
tree4d0ce764a2da2a85fc1156dfef15707121d08af7
parent67d8e3942b546c644b9c0efc9bfe22b7a4372a23
2007-08-31  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/31879
PR fortran/31197
PR fortran/31258
PR fortran/32703
* gfortran.h : Add prototype for gfc_resolve_substring_charlen.
* resolve.c (gfc_resolve_substring_charlen): New function.
(resolve_ref): Call gfc_resolve_substring_charlen.
(gfc_resolve_character_operator): New function.
(gfc_resolve_expr): Call the new functions in cases where the
character length is missing.
* iresolve.c (cshift, eoshift, merge, pack, reshape, spread,
transpose, unpack): Call gfc_resolve_substring_charlen for
source expressions that are character and have a reference.
* trans.h (gfc_trans_init_string_length) Change name to
gfc_conv_string_length; modify references in trans-expr.c,
trans-array.c and trans-decl.c.
* trans-expr.c (gfc_trans_string_length): Handle case of no
backend_decl.
(gfc_conv_aliased_arg): Remove code for treating substrings
and replace with call to gfc_trans_string_length.
* trans-array.c (gfc_conv_expr_descriptor): Remove code for
treating strings and call gfc_trans_string_length instead.

2007-08-31  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/31879
* gfortran.dg/char_length_7.f90: New test.
* gfortran.dg/char_length_9.f90: New test.
* gfortran.dg/char_assign_1.f90: Add extra warning.

PR fortran/31197
PR fortran/31258
* gfortran.dg/char_length_8.f90: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@127939 138bc75d-0d04-0410-961f-82ee72b054a4
13 files changed:
gcc/fortran/ChangeLog
gcc/fortran/gfortran.h
gcc/fortran/iresolve.c
gcc/fortran/resolve.c
gcc/fortran/trans-array.c
gcc/fortran/trans-decl.c
gcc/fortran/trans-expr.c
gcc/fortran/trans.h
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/char_assign_1.f90
gcc/testsuite/gfortran.dg/char_length_7.f90 [new file with mode: 0644]
gcc/testsuite/gfortran.dg/char_length_8.f90 [new file with mode: 0644]
gcc/testsuite/gfortran.dg/char_length_9.f90 [new file with mode: 0644]