diff options
author | Janus Weil <janus@gcc.gnu.org> | 2012-09-17 14:50:34 +0200 |
---|---|---|
committer | Janus Weil <janus@gcc.gnu.org> | 2012-09-17 14:50:34 +0200 |
commit | a4a76e5242236301f4713efae30642fb39e5d0eb (patch) | |
tree | ccf8bb60f63d400aee5500fda6226de40f7c80c4 /gcc/fortran/expr.c | |
parent | 640a4c59ed729e48250032b039a5239cd95c1d41 (diff) | |
download | gcc-a4a76e5242236301f4713efae30642fb39e5d0eb.zip gcc-a4a76e5242236301f4713efae30642fb39e5d0eb.tar.gz gcc-a4a76e5242236301f4713efae30642fb39e5d0eb.tar.bz2 |
re PR fortran/54285 ([F03] Calling a PPC with proc-ptr result)
2012-09-17 Janus Weil <janus@gcc.gnu.org>
PR fortran/54285
* expr.c (gfc_check_pointer_assign): Correctly handle procedure pointers
as function results.
* primary.c (gfc_match_varspec): Allow to call a PPC with proc-ptr
result.
2012-09-17 Janus Weil <janus@gcc.gnu.org>
PR fortran/54285
* gfortran.dg/proc_ptr_result_7.f90: New.
From-SVN: r191383
Diffstat (limited to 'gcc/fortran/expr.c')
-rw-r--r-- | gcc/fortran/expr.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/gcc/fortran/expr.c b/gcc/fortran/expr.c index dced05d..4bba438 100644 --- a/gcc/fortran/expr.c +++ b/gcc/fortran/expr.c @@ -3513,8 +3513,16 @@ gfc_check_pointer_assign (gfc_expr *lvalue, gfc_expr *rvalue) comp = gfc_get_proc_ptr_comp (rvalue); if (comp) { - s2 = comp->ts.interface; - name = comp->name; + if (rvalue->expr_type == EXPR_FUNCTION) + { + s2 = comp->ts.interface->result; + name = comp->ts.interface->result->name; + } + else + { + s2 = comp->ts.interface; + name = comp->name; + } } else if (rvalue->expr_type == EXPR_FUNCTION) { |