diff options
author | Tobias Burnus <burnus@net-b.de> | 2011-02-13 20:26:24 +0100 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2011-02-13 20:26:24 +0100 |
commit | 975b975b29fa2aa9dd562a55006a4cd93421a652 (patch) | |
tree | 7188e003b09e504b9233cc303567e5f11e1e0c8c /gcc/fortran/interface.c | |
parent | 4b79050f02be420f4c76874c0ee799d68c32beb8 (diff) | |
download | gcc-975b975b29fa2aa9dd562a55006a4cd93421a652.zip gcc-975b975b29fa2aa9dd562a55006a4cd93421a652.tar.gz gcc-975b975b29fa2aa9dd562a55006a4cd93421a652.tar.bz2 |
re PR fortran/47569 (gfortran does not detect that the parameters for passing a partial string to a subroutine are incorrect)
2011-02-13 Tobias Burnus <burnus@net-b.de>
PR fortran/47569
* interface.c (compare_parameter): Avoid ICE with
character components.
2011-02-13 Tobias Burnus <burnus@net-b.de>
* gfortran.dg/argument_checking_13.f90: Update dg-error.
* gfortran.dg/argument_checking_17.f90: New.
From-SVN: r170110
Diffstat (limited to 'gcc/fortran/interface.c')
-rw-r--r-- | gcc/fortran/interface.c | 73 |
1 files changed, 48 insertions, 25 deletions
diff --git a/gcc/fortran/interface.c b/gcc/fortran/interface.c index 1e5df61..a03bbeb 100644 --- a/gcc/fortran/interface.c +++ b/gcc/fortran/interface.c @@ -1461,7 +1461,7 @@ compare_parameter (gfc_symbol *formal, gfc_expr *actual, int ranks_must_agree, int is_elemental, locus *where) { gfc_ref *ref; - bool rank_check; + bool rank_check, is_pointer; /* If the formal arg has type BT_VOID, it's to one of the iso_c_binding procs c_f_pointer or c_f_procpointer, and we need to accept most @@ -1672,23 +1672,56 @@ compare_parameter (gfc_symbol *formal, gfc_expr *actual, return 1; /* At this point, we are considering a scalar passed to an array. This - is valid (cf. F95 12.4.1.1; F2003 12.4.1.2), + is valid (cf. F95 12.4.1.1, F2003 12.4.1.2, and F2008 12.5.2.4), - if the actual argument is (a substring of) an element of a - non-assumed-shape/non-pointer array; - - (F2003) if the actual argument is of type character. */ + non-assumed-shape/non-pointer/non-polymorphic array; or + - (F2003) if the actual argument is of type character of default/c_char + kind. */ + + is_pointer = actual->expr_type == EXPR_VARIABLE + ? actual->symtree->n.sym->attr.pointer : false; for (ref = actual->ref; ref; ref = ref->next) - if (ref->type == REF_ARRAY && ref->u.ar.type == AR_ELEMENT - && ref->u.ar.dimen > 0) - break; + { + if (ref->type == REF_COMPONENT) + is_pointer = ref->u.c.component->attr.pointer; + else if (ref->type == REF_ARRAY && ref->u.ar.type == AR_ELEMENT + && ref->u.ar.dimen > 0 + && (!ref->next + || (ref->next->type == REF_SUBSTRING && !ref->next->next))) + break; + } + + if (actual->ts.type == BT_CLASS && actual->expr_type != EXPR_NULL) + { + if (where) + gfc_error ("Polymorphic scalar passed to array dummy argument '%s' " + "at %L", formal->name, &actual->where); + return 0; + } - /* Not an array element. */ - if (formal->ts.type == BT_CHARACTER - && (ref == NULL - || (actual->expr_type == EXPR_VARIABLE - && (actual->symtree->n.sym->as->type == AS_ASSUMED_SHAPE - || actual->symtree->n.sym->attr.pointer)))) + if (actual->expr_type != EXPR_NULL && ref && actual->ts.type != BT_CHARACTER + && (is_pointer || ref->u.ar.as->type == AS_ASSUMED_SHAPE)) { + if (where) + gfc_error ("Element of assumed-shaped or pointer " + "array passed to array dummy argument '%s' at %L", + formal->name, &actual->where); + return 0; + } + + if (actual->ts.type == BT_CHARACTER && actual->expr_type != EXPR_NULL + && (!ref || is_pointer || ref->u.ar.as->type == AS_ASSUMED_SHAPE)) + { + if (formal->ts.kind != 1 && (gfc_option.allow_std & GFC_STD_GNU) == 0) + { + if (where) + gfc_error ("Extension: Scalar non-default-kind, non-C_CHAR-kind " + "CHARACTER actual argument with array dummy argument " + "'%s' at %L", formal->name, &actual->where); + return 0; + } + if (where && (gfc_option.allow_std & GFC_STD_F2003) == 0) { gfc_error ("Fortran 2003: Scalar CHARACTER actual argument with " @@ -1701,7 +1734,8 @@ compare_parameter (gfc_symbol *formal, gfc_expr *actual, else return 1; } - else if (ref == NULL && actual->expr_type != EXPR_NULL) + + if (ref == NULL && actual->expr_type != EXPR_NULL) { if (where) argument_rank_mismatch (formal->name, &actual->where, @@ -1709,17 +1743,6 @@ compare_parameter (gfc_symbol *formal, gfc_expr *actual, return 0; } - if (actual->expr_type == EXPR_VARIABLE - && actual->symtree->n.sym->as - && (actual->symtree->n.sym->as->type == AS_ASSUMED_SHAPE - || actual->symtree->n.sym->attr.pointer)) - { - if (where) - gfc_error ("Element of assumed-shaped array passed to dummy " - "argument '%s' at %L", formal->name, &actual->where); - return 0; - } - return 1; } |