]> git.ipfire.org Git - thirdparty/gcc.git/commit - gcc/fortran/trans-expr.c
2006-10-13 Paul Thomas <pault@gcc.gnu.org>
authorpault <pault@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 13 Oct 2006 12:51:07 +0000 (12:51 +0000)
committerpault <pault@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 13 Oct 2006 12:51:07 +0000 (12:51 +0000)
commit540338c603a3876db649e431ac3fff4b698be298
tree1d53d33e42e171e630c8781c3fdee5e851cb8967
parentc6a41748b842156a85506493ecd386f8aff55128
2006-10-13 Paul Thomas <pault@gcc.gnu.org>

PR fortran/29373
* decl.c (get_proc_name, gfc_match_function_decl): Add
attr.implicit_type to conditions that throw error for
existing explicit interface and that allow new type-
spec to be applied.

PR fortran/29407
* resolve.c (resolve_fl_namelist): Do not check for
namelist/procedure conflict, if the symbol corresponds
to a good local variable declaration.

PR fortran/27701
* decl.c (get_proc_name): Replace the detection of a declared
procedure by the presence of a formal argument list by the
attributes of the symbol and the presence of an explicit
interface.

PR fortran/29232
* resolve.c (resolve_fl_variable): See if the host association
of a derived type is blocked by the presence of another type I
object in the current namespace.

PR fortran/29364
* resolve.c (resolve_fl_derived): Check for the presence of
the derived type for a derived type component.

PR fortran/24398
* module.c (gfc_use_module): Check that the first words in a
module file are 'GFORTRAN module'.

PR fortran/29422
* resolve.c (resolve_transfer): Test functions for suitability
for IO, as well as variables.

PR fortran/29428
* trans-expr.c (gfc_trans_scalar_assign): Remove nullify of
rhs expression.

2006-10-13 Paul Thomas <pault@gcc.gnu.org>

PR fortran/29373
* gfortran.dg/implicit_9.f90: New test.

PR fortran/29407
* gfortran.dg/namelist_25.f90: New test.

PR fortran/27701
* gfortran.dg/same_name_2.f90: New test.

PR fortran/29232
* gfortran.dg/host_assoc_types_1.f90: New test.

PR fortran/29364
* gfortran.dg/missing_derived_type_1.f90: New test.
* gfortran.dg/implicit_actual.f90: Comment out USE GLOBAL.

PR fortran/29422
* gfortran.dg/alloc_comp_constraint_4.f90: New test.

PR fortran/29428
* gfortran.dg/alloc_comp_assign_5.f90: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@117692 138bc75d-0d04-0410-961f-82ee72b054a4
14 files changed:
gcc/fortran/ChangeLog
gcc/fortran/decl.c
gcc/fortran/module.c
gcc/fortran/resolve.c
gcc/fortran/trans-expr.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/alloc_comp_assign_5.f90 [new file with mode: 0644]
gcc/testsuite/gfortran.dg/alloc_comp_constraint_4.f90 [new file with mode: 0644]
gcc/testsuite/gfortran.dg/host_assoc_types_1.f90 [new file with mode: 0644]
gcc/testsuite/gfortran.dg/implicit_9.f90 [new file with mode: 0644]
gcc/testsuite/gfortran.dg/implicit_actual.f90
gcc/testsuite/gfortran.dg/missing_derived_type_1.f90 [new file with mode: 0644]
gcc/testsuite/gfortran.dg/namelist_25.f90 [new file with mode: 0644]
gcc/testsuite/gfortran.dg/same_name_2.f90 [new file with mode: 0644]