[Bug fortran/29712] UBOUND of non-last dimensions of assumed-size array

2007-01-15 Thread pault at gcc dot gnu dot org


--- Comment #4 from pault at gcc dot gnu dot org  2007-01-15 08:16 ---
Subject: Bug 29712

Author: pault
Date: Mon Jan 15 08:16:17 2007
New Revision: 120790

URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=120790
Log:
2007-01-15  Paul Thomas  [EMAIL PROTECTED]

PR fortran/28172
* trans-stmt.c (gfc_trans_call): If it does not have one, get
a backend_decl for an alternate return.

PR fortran/29389
* resolve.c (pure_function): Statement functions are pure. Note
that this will have to recurse to comply fully with F95.

PR fortran/29712
* resolve.c (resolve_function): Only a reference to the final
dimension of an assumed size array is an error in an inquiry
function.

PR fortran/30283
* resolve.c (resolve_function): Make sure that the function
expression has a type.

2007-01-15  Paul Thomas  [EMAIL PROTECTED]

PR fortran/28172
* gfortran.dg/altreturn_4.f90: New test.

PR fortran/29389
* gfortran.dg/stfunc_4.f90: New test.

PR fortran/29712
* gfortran.dg/bound_2.f90: Reinstate commented out line.
* gfortran.dg/initialization_1.f90: Change warning.

PR fortran/30283
* gfortran.dg/specification_type_resolution_2.f90: New test.


Added:
trunk/gcc/testsuite/gfortran.dg/altreturn_4.f90
trunk/gcc/testsuite/gfortran.dg/specification_type_resolution_2.f90
trunk/gcc/testsuite/gfortran.dg/stfunc_4.f90
Modified:
trunk/gcc/fortran/ChangeLog
trunk/gcc/fortran/resolve.c
trunk/gcc/fortran/trans-stmt.c
trunk/gcc/testsuite/ChangeLog
trunk/gcc/testsuite/gfortran.dg/bound_2.f90
trunk/gcc/testsuite/gfortran.dg/initialization_1.f90


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29712



[Bug fortran/29712] UBOUND of non-last dimensions of assumed-size array

2006-12-31 Thread pault at gcc dot gnu dot org


--- Comment #3 from pault at gcc dot gnu dot org  2006-12-31 17:59 ---
This, at resolve.c:1578 sems to provide a fix (not regtested)-

  for (arg = expr-value.function.actual; arg; arg = arg-next)
{
  if (inquiry  arg-next != NULL  arg-next-expr
 arg-next-expr-expr_type != EXPR_CONSTANT)
break;
  else if (inquiry  arg-next != NULL  arg-next-expr)
if ((int)mpz_get_si (arg-next-expr-value.integer)
 arg-expr-rank)
break;

Paul


-- 

pault at gcc dot gnu dot org changed:

   What|Removed |Added

 AssignedTo|unassigned at gcc dot gnu   |pault at gcc dot gnu dot org
   |dot org |
 Status|NEW |ASSIGNED
   Last reconfirmed|2006-11-04 16:32:42 |2006-12-31 17:59:40
   date||


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29712



[Bug fortran/29712] UBOUND of non-last dimensions of assumed-size array

2006-11-06 Thread pinskia at gcc dot gnu dot org


--- Comment #2 from pinskia at gcc dot gnu dot org  2006-11-06 20:37 ---
This is my fault I think.  There was a PR about ubound and assumed-size arrays
where we crashed and I changed the code to reject all ubound on them IIRC.


-- 

pinskia at gcc dot gnu dot org changed:

   What|Removed |Added

 CC||pinskia at gcc dot gnu dot
   ||org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29712



[Bug fortran/29712] UBOUND of non-last dimensions of assumed-size array

2006-11-04 Thread fxcoudert at gcc dot gnu dot org


-- 

fxcoudert at gcc dot gnu dot org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed|0   |1
   Last reconfirmed|-00-00 00:00:00 |2006-11-04 16:32:42
   date||


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29712



[Bug fortran/29712] UBOUND of non-last dimensions of assumed-size array

2006-11-04 Thread fxcoudert at gcc dot gnu dot org


--- Comment #1 from fxcoudert at gcc dot gnu dot org  2006-11-04 16:46 
---
Line 197 of testcase gfortran.dg/bound_2.f90 will have to be uncommented when
that bug is fixed.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29712