re PR fortran/48699 ([OOP] MOVE_ALLOC inside SELECT TYPE)
authorJanus Weil <janus@gcc.gnu.org>
Sat, 21 May 2011 19:12:51 +0000 (21:12 +0200)
committerJanus Weil <janus@gcc.gnu.org>
Sat, 21 May 2011 19:12:51 +0000 (21:12 +0200)
2011-05-21  Janus Weil  <janus@gcc.gnu.org>

PR fortran/48699
* match.c (select_type_set_tmp): Make the temporary ALLOCATABLE if the
selector is ALLOCATABLE.

2011-05-21  Janus Weil  <janus@gcc.gnu.org>

PR fortran/48699
* gfortran.dg/select_type_23.f03: New.

From-SVN: r174001

gcc/fortran/ChangeLog
gcc/fortran/match.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/select_type_23.f03 [new file with mode: 0644]

index 45ca79c..b0f4e92 100644 (file)
@@ -1,3 +1,9 @@
+2011-05-21  Janus Weil  <janus@gcc.gnu.org>
+
+       PR fortran/48699
+       * match.c (select_type_set_tmp): Make the temporary ALLOCATABLE if the
+       selector is ALLOCATABLE.
+
 2011-05-20  Janus Weil  <janus@gcc.gnu.org>
 
        PR fortran/48706
index f1c953a..75f2a7f 100644 (file)
@@ -4533,7 +4533,11 @@ select_type_set_tmp (gfc_typespec *ts)
   gfc_get_sym_tree (name, gfc_current_ns, &tmp, false);
   gfc_add_type (tmp->n.sym, ts, NULL);
   gfc_set_sym_referenced (tmp->n.sym);
-  gfc_add_pointer (&tmp->n.sym->attr, NULL);
+  if (select_type_stack->selector->ts.type == BT_CLASS &&
+      CLASS_DATA (select_type_stack->selector)->attr.allocatable)
+    gfc_add_allocatable (&tmp->n.sym->attr, NULL);
+  else
+    gfc_add_pointer (&tmp->n.sym->attr, NULL);
   gfc_add_flavor (&tmp->n.sym->attr, FL_VARIABLE, name, NULL);
   if (ts->type == BT_CLASS)
     gfc_build_class_symbol (&tmp->n.sym->ts, &tmp->n.sym->attr,
index d5fba0b..fa4549c 100644 (file)
@@ -1,3 +1,8 @@
+2011-05-21  Janus Weil  <janus@gcc.gnu.org>
+
+       PR fortran/48699
+       * gfortran.dg/select_type_23.f03: New.
+
 2011-05-20  Jason Merrill  <jason@redhat.com>
 
        * g++.dg/cpp0x/defaulted26.C: New.
diff --git a/gcc/testsuite/gfortran.dg/select_type_23.f03 b/gcc/testsuite/gfortran.dg/select_type_23.f03
new file mode 100644 (file)
index 0000000..d7788d2
--- /dev/null
@@ -0,0 +1,22 @@
+! { dg-do compile }
+!
+! PR 48699: [OOP] MOVE_ALLOC inside SELECT TYPE
+!
+! Contributed by Salvatore Filippone <sfilippone@uniroma2.it>
+
+program testmv2
+
+  type bar
+    integer, allocatable  :: ia(:), ja(:)
+  end type bar
+
+  class(bar), allocatable :: sm,sm2
+
+  allocate(sm2)
+
+  select type(sm2) 
+  type is (bar)
+    call move_alloc(sm2,sm)
+  end select
+
+end program testmv2