Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[photran] A question about debug in Photran

I'm using Photran3.0+g95 under Windows. When debugging the program, I found
that the values of array elements can not be correctly display either in 
variables window or in expressions window. For example, 

program main
    implicit none
    real, dimension(2) :: x
    x=(/1.4, -2.1/)
    write(*, *) x
end program main

For the program above, in the expressions window x is displayed as

offset=0x22ff44 "\\002"
rank=1
esize=4
base=0x0022ff48
info=[3]
0=4
1=1
2=2

Did I miss anything important such as configuration options?




Back to the top