Re-enable fnspec checking once fortran frontend is fixed.

* tree-ssa-alias.c (attr_fnspec::verify): Re-enabl checking.
This commit is contained in:
Jan Hubicka 2020-10-27 10:23:46 +01:00
parent 5cb0dbd6b1
commit 21508c47f9

View file

@ -3781,10 +3781,7 @@ attr_fnspec::verify ()
else if ((len - return_desc_size) % arg_desc_size)
err = true;
else if ((str[0] < '1' || str[0] > '4')
&& str[0] != '.' && str[0] != 'm'
/* FIXME: Fortran trans-decl.c contains multiple wrong fnspec
strings. The following characters have no meaning. */
&& str[0] != 'R' && str[0] != 'W')
&& str[0] != '.' && str[0] != 'm')
err = true;
switch (str[1])