Commit 949b40a4 by Janne Blomqvist

Use gfc_charlen_t instead of int in gfc_conv_string_init

Committed as obvious.

2018-01-31  Janne Blomqvist  <jb@gcc.gnu.org>

        * trans-const.c (gfc_conv_string_init): Use gfc_charlen_t instead
        of int for slen.

From-SVN: r257258
parent 6b9a302f
2018-01-31 Janne Blomqvist <jb@gcc.gnu.org> 2018-01-31 Janne Blomqvist <jb@gcc.gnu.org>
* trans-const.c (gfc_conv_string_init): Use gfc_charlen_t instead
of int for slen.
2018-01-31 Janne Blomqvist <jb@gcc.gnu.org>
PR fortran/78534 PR fortran/78534
* trans-expr.c (fill_with_spaces): Use memset instead of * trans-expr.c (fill_with_spaces): Use memset instead of
generating loop. generating loop.
......
...@@ -141,7 +141,7 @@ gfc_conv_string_init (tree length, gfc_expr * expr) ...@@ -141,7 +141,7 @@ gfc_conv_string_init (tree length, gfc_expr * expr)
{ {
gfc_char_t *s; gfc_char_t *s;
HOST_WIDE_INT len; HOST_WIDE_INT len;
int slen; gfc_charlen_t slen;
tree str; tree str;
bool free_s = false; bool free_s = false;
......
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