Software Archive
Read-only legacy content
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
17060 Discussions

Debug erring on %LABEL

Intel_C_Intel
Employee
473 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
473 Views
Fixed in the current version, 7.4.

Steve
0 Kudos
Reply