PR fortran/68227
* trans-stmt.c (gfc_do_allocate): Convert gcc_assert argument into
into part of conditional statement.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230873
138bc75d-0d04-0410-961f-
82ee72b054a4
+2015-11-25 Steven G. Kargl <kargl@gcc.gnu.org>
+
+ PR fortran/68227
+ * trans-stmt.c (gfc_do_allocate): Convert gcc_assert argument into
+ into part of conditional statement.
+
2015-11-25 Ilmir Usmanov <me@ilmir.us>
Cesar Philippidis <cesar@codesourcery.com>
type = build_range_type (gfc_array_index_type, gfc_index_zero_node, tmp);
type = build_array_type (elem_type, type);
- if (gfc_can_put_var_on_stack (bytesize))
+ if (gfc_can_put_var_on_stack (bytesize) && INTEGER_CST_P (size))
{
- gcc_assert (INTEGER_CST_P (size));
tmpvar = gfc_create_var (type, "temp");
*pdata = NULL_TREE;
}