Software Archive
Read-only legacy content
17060 Discussions

Debug erring on %LABEL

Intel_C_Intel
Employee
460 Views
Given the program:

PROGRAM TLABEL
INTEGER I,J
I = 1
J = 2
IF (I .EQ. 1) GO TO 20
10 WRITE(*,*) I
J = 0
20 WRITE(*,*) J
END

and building it to debug:

$ fortran/debug/noopt/nolist DEBUG_LABEL.FOR
$ link/debug/nomap DEBUG_LABEL

debug will fail when attempting to break on label 20:

DBG> set break %lab 20
%DEBUG-E-NOSYMBOL, symbol '%LABEL 20' is not in the symbol table

I think this is a bug. Is there a solution available?
0 Kudos
1 Reply
Steven_L_Intel1
Employee
460 Views
Fixed in the current version, 7.4.

Steve
0 Kudos
Reply