Alok Kumar Sharma
Alok Kumar Sharma
Consider the testcase below ``` module mymod integer :: var1 = 11 integer :: var2 = 12 integer :: var3 = 13 end module mymod Program main call use_renamed() contains...
In existing debug info subscript is defined as lowerBound/upperBound/stride, lowerBound is constant and upperBound is DIVariable and stride is taken from descriptor. At higher optimizations DIVariable can be optimized out,...
For fortran character type DW_TAG_string_type should be generated, in absence of this, debugger doesnt differentiate between character(kind=1) and integer(kind=1). Due to this debugger displays value as an integer. ex. -------------...