+2014-12-15 Janus Weil <janus@gcc.gnu.org>
+
+ PR fortran/63727
+ * resolve.c (resolve_actual_arglist): Check for elemental procedure
+ pointer components.
+
2014-12-15 Janus Weil <janus@gcc.gnu.org>
PR fortran/63674
gfc_symbol *sym;
gfc_symtree *parent_st;
gfc_expr *e;
+ gfc_component *comp;
int save_need_full_assumed_size;
bool return_value = false;
bool actual_arg_sav = actual_arg, first_actual_arg_sav = first_actual_arg;
}
}
+ comp = gfc_get_proc_ptr_comp(e);
+ if (comp && comp->attr.elemental)
+ {
+ gfc_error ("ELEMENTAL procedure pointer component %qs is not "
+ "allowed as an actual argument at %L", comp->name,
+ &e->where);
+ }
+
/* Fortran 2008, C1237. */
if (e->expr_type == EXPR_VARIABLE && gfc_is_coindexed (e)
&& gfc_has_ultimate_pointer (e))
+2014-12-15 Janus Weil <janus@gcc.gnu.org>
+
+ PR fortran/63727
+ * gfortran.dg/coarray_collectives_14.f90: Address FIXME item.
+
2014-12-15 Richard Biener <rguenther@suse.de>
PR middle-end/64295
call co_reduce(caf, arg3) ! { dg-error "shall have two arguments" }
call co_reduce(caf, dt%arg3) ! { dg-error "shall have two arguments" }
call co_reduce(caf, elem) ! { dg-error "ELEMENTAL non-INTRINSIC procedure 'elem' is not allowed as an actual argument" }
- call co_reduce(caf, dt%elem) ! { FIXME: "ELEMENTAL non-INTRINSIC procedure 'elem' is not allowed as an actual argument" }
+ call co_reduce(caf, dt%elem) ! { dg-error "ELEMENTAL procedure pointer component 'elem' is not allowed as an actual argument" }
call co_reduce(caf, realo) ! { dg-error "A argument at .1. has type INTEGER.4. but the function passed as OPERATOR at .2. returns REAL.4." }
call co_reduce(caf, dt%realo) ! { dg-error "A argument at .1. has type INTEGER.4. but the function passed as OPERATOR at .2. returns REAL.4." }
call co_reduce(caf, int8) ! { dg-error "A argument at .1. has type INTEGER.4. but the function passed as OPERATOR at .2. returns INTEGER.8." }