You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for `DIStringType` in DWARF. This is Fortran
specific case (Fortran `CHARACTER` type). The `CHARACTER` type
is mapped to the DWARF tag `DW_TAG_string_type`
from `DIStringType` from LLVM metadata, e.g.:
LLVM Metadata
```
!0 = !DIStringType(name: "character(10)", size: 80, align: 8)
```
DWARF information
```
DW_TAG_string_type
DW_AT_name: character(10)
DW_AT_byte_size: 10
```
0 commit comments