Commit e219f32f by Janus Weil

re PR fortran/42335 ([OOP] ICE on CLASS IS (bad_identifier))

gcc/fortran/
2009-12-11 Janus Weil  <janus@gcc.gnu.org>

	PR fortran/42335
	* symbol.c (select_type_insert_tmp): Add an extra check for
	error recovery.


gcc/testsuite/
2009-12-11  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/42335
	* gfortran.dg/select_type_11.f03: New test.

From-SVN: r155162
parent 63a00e0d
2009-12-11 Janus Weil <janus@gcc.gnu.org>
PR fortran/42335
* symbol.c (select_type_insert_tmp): Add an extra check for
error recovery.
2009-12-10 Daniel Franke <franke.daniel@gmail.com>
PR fortran/40287
......
......@@ -2476,7 +2476,7 @@ select_type_insert_tmp (gfc_symtree **st)
{
gfc_select_type_stack *stack = select_type_stack;
for (; stack; stack = stack->prev)
if ((*st)->n.sym == stack->selector)
if ((*st)->n.sym == stack->selector && stack->tmp)
*st = stack->tmp;
}
......
2009-12-11 Janus Weil <janus@gcc.gnu.org>
PR fortran/42335
* gfortran.dg/select_type_11.f03: New test.
2009-12-11 Dodji Seketeli <dodji@redhat.com>
PR c++/42225
......
! { dg-do compile }
!
! PR 42335: [OOP] ICE on CLASS IS (bad_identifier)
!
! Contributed by Harald Anlauf <anlauf@gmx.de>
implicit none
type, abstract :: vector_class
end type vector_class
type, extends(vector_class) :: trivial_vector_type
real :: elements(100)
end type trivial_vector_type
contains
subroutine bar (this,v)
class(trivial_vector_type), intent(inout) :: this
class(vector_class), intent(in) :: v
select type (v)
class is (bad_id) ! { dg-error "is not an accessible derived type" }
this%elements(:) = v%elements(:) ! { dg-error "is not a member of" }
end select
end subroutine bar
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment