mirror of git://gcc.gnu.org/git/gcc.git
Correction partielle coindexed_1.f90
This commit is contained in:
parent
c94031aef4
commit
bdab6e4afd
|
@ -2425,7 +2425,11 @@ contiguous_attr (const symbol_attribute & attr)
|
||||||
static bool
|
static bool
|
||||||
is_contiguous (gfc_symbol *sym)
|
is_contiguous (gfc_symbol *sym)
|
||||||
{
|
{
|
||||||
if (contiguous_attr (gfc_symbol_attr (sym)))
|
symbol_attribute sym_attr = gfc_symbol_attr (sym);
|
||||||
|
if (sym_attr.pointer)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if (contiguous_attr (sym_attr))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
if (!(sym->assoc
|
if (!(sym->assoc
|
||||||
|
|
Loading…
Reference in New Issue