flang
flang copied to clipboard
gdb.fortran testsuite : logical .TRUE. value printing is not correct
Affects a few tests like logical.exp in gdb.fortran testsuite.
program mn logical :: x = .TRUE. logical :: y = .FALSE. print *, x print *, y end program
(gdb) print x $3 = 4294967295 (gdb) print y $4 = .FALSE.
is it really a bug ??? I too have faced the same issue. can you give me some insights regarding this bug..
I cannot reproduce this problem on the latest version of Classic Flang.
@samstephentdc Can you tell me how you encountered the problem?