[all-commits] [llvm/llvm-project] b1a34b: [flang] Fix element indexing in derived type defau...
Valentin Clement (バレンタイン クレメン) via All-commits
all-commits at lists.llvm.org
Wed Jan 25 09:39:18 PST 2023
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: b1a34b242fb96ddedf34045d415cbb807534d733
https://github.com/llvm/llvm-project/commit/b1a34b242fb96ddedf34045d415cbb807534d733
Author: Valentin Clement <clementval at gmail.com>
Date: 2023-01-25 (Wed, 25 Jan 2023)
Changed paths:
M flang/runtime/derived.cpp
Log Message:
-----------
[flang] Fix element indexing in derived type default initialization
Derived type default initialization was not taking the step into
consideration.
```
module dt_init
type p1
integer :: a
end type
type, extends(p1) :: p2
integer :: b = 10
end type
contains
subroutine init_dt(z)
class(p1), intent(out) :: z(:)
select type(z)
type is (p2)
print*,z
end select
end subroutine
end module
program test
use dt_init
type(p2) :: t(6) = [ p2(1,2),p2(3,4),p2(5,6),p2(7,8),p2(9,10),p2(11,12) ]
print*,t
call init_dt(t(::2))
print*,t
end program
```
Without the fix, the three first elements are initialized
```
1 2 3 4 5 6 7 8 9 10 11 12
1 10 5 10 9 10
1 10 3 10 5 10 7 8 9 10 11 12
```
Where it should be element number 1,3,5
```
1 2 3 4 5 6 7 8 9 10 11 12
1 10 5 10 9 10
1 10 3 4 5 10 7 8 9 10 11 12
```
Reviewed By: klausler
Differential Revision: https://reviews.llvm.org/D142527
More information about the All-commits
mailing list