[Bug fortran/69741] forall array scalar loop counters

nickpapior at gmail dot com gcc-bugzilla@gcc.gnu.org
Wed Feb 10 19:44:00 GMT 2016


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69741

Nick <nickpapior at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|minor                       |critical

--- Comment #2 from Nick <nickpapior at gmail dot com> ---
Note that in regular do loops array elements are also not allowed:

```
do ii(2) = 1 , 2
     do ii(1) = 1 , 3
        a(ii(1),ii(2)) = ii(1) * ii(2)
     end do
  end do
```

is also illegal. I think they are related, but if you want me to create a new
bug, please let me know. :)


More information about the Gcc-bugs mailing list