mirror of
https://github.com/intel/llvm.git
synced 2026-02-04 20:00:11 +08:00
[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
This commit is contained in:
@@ -48,7 +48,7 @@ int Initialize(const Descriptor &instance, const typeInfo::DerivedType &derived,
|
||||
// non-allocatable non-automatic components
|
||||
std::size_t bytes{comp.SizeInBytes(instance)};
|
||||
for (std::size_t j{0}; j < elements; ++j) {
|
||||
char *ptr{instance.OffsetElement<char>(j * byteStride + comp.offset())};
|
||||
char *ptr{instance.ZeroBasedIndexedElement<char>(j) + comp.offset()};
|
||||
std::memcpy(ptr, init, bytes);
|
||||
}
|
||||
} else if (comp.genre() == typeInfo::Component::Genre::Data &&
|
||||
|
||||
Reference in New Issue
Block a user