jeanPerier
jeanPerier
The following code raises error: `CYCLE construct-name is not in scope` when it should not. ``` mainloop : do 1 i=1,100 cycle mainloop 1 end do mainloop end ``` The...
``` integer :: a(5) integer :: i forall (i = 1:5) where (a(i) .eq. 0) a(i) = i end where end forall end ``` Crash: with error "symbol is not...
``` integer :: a, b(100000000) equivalence (a, b) end ``` Is lowered to: ``` func @_QQmain() { %0 = fir.alloca !fir.array {uniq_name = "_QEa"} return } ``` It looks like...
``` type t integer :: i end type type(t) :: scalar, array(10) array = scalar end ``` Crashes bbc with error: 'fir.convert' op invalid type conversion With `--dump-module-on-failure` (full dump...
``` subroutine foo() implicit none integer :: stepx contains subroutine bar() integer :: edgex, i edgex(i) = i + stepx print *, edgex(10) end subroutine end subroutine ``` `stepx` is...
All the TODOs and bugs related to CLASS have been implemented/fixed. Enable newly passing tests and move all other failing tests under existing or new categories. None of these failures...