+2019-02-21 Thomas Koenig <tkoenig@gcc.gnu.org>
+
+ PR fortran/86119
+ * class.c (gfc_get_len_component): Add argument k for kind.
+ If the kind of the resulting expression is not equal to k,
+ convert it.
+ * gfortran.h (gfc_len_component): Adjust prototype.
+ * simplify.c (gfc_simplify_len): Pass kind to
+ gfc_get_len_component.
+
2019-02-20 Martin Liska <mliska@suse.cz>
* gfortran.texi: Change singular to plural.
ref to the _len component. */
gfc_expr *
-gfc_get_len_component (gfc_expr *e)
+gfc_get_len_component (gfc_expr *e, int k)
{
gfc_expr *ptr;
gfc_ref *ref, **last;
}
/* And replace if with a ref to the _len component. */
gfc_add_len_component (ptr);
+ if (k != ptr->ts.kind)
+ {
+ gfc_typespec ts;
+ gfc_clear_ts (&ts);
+ ts.type = BT_INTEGER;
+ ts.kind = k;
+ gfc_convert_type_warn (ptr, &ts, 2, 0);
+ }
return ptr;
}
bool gfc_is_class_container_ref (gfc_expr *e);
gfc_expr *gfc_class_initializer (gfc_typespec *, gfc_expr *);
unsigned int gfc_hash_value (gfc_symbol *);
-gfc_expr *gfc_get_len_component (gfc_expr *e);
+gfc_expr *gfc_get_len_component (gfc_expr *e, int);
bool gfc_build_class_symbol (gfc_typespec *, symbol_attribute *,
gfc_array_spec **);
gfc_symbol *gfc_find_derived_vtab (gfc_symbol *);
/* The expression in assoc->target points to a ref to the _data component
of the unlimited polymorphic entity. To get the _len component the last
_data ref needs to be stripped and a ref to the _len component added. */
- return gfc_get_len_component (e->symtree->n.sym->assoc->target);
+ return gfc_get_len_component (e->symtree->n.sym->assoc->target, k);
else
return NULL;
}
+2019-02-21 Thomas Koenig <tkoenig@gcc.gnu.org>
+
+ PR fortran/86119
+ * gfortran.dg/warn_conversion_11.f90: New test.
+
2019-02-21 H.J. Lu <hongjiu.lu@intel.com>
PR target/87412
--- /dev/null
+! { dg-do compile }
+! { dg-options "-Wconversion" }
+! PR 86119 - this used to warn.
+program proglen
+
+implicit none
+
+ class(*), allocatable :: s
+ integer :: l2
+
+ allocate(s, source = '123 ')
+
+ select type(s)
+ type is (character(len=*))
+ l2 = len(s)
+ end select
+
+end program proglen