Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.3 4.3bsd-beta 6/6/85; site ucbvax.berkeley.edu.BERKELEY.EDU Path: utzoo!decvax!decwrl!ucbvax.berkeley.edu!apollo From: holtz%cascade.carleton.cdn%ubc.CSNET@CSNET-RELAY.ARPA (Neal Holtz) Newsgroups: mod.computers.apollo Subject: Debugger bugs (formerly Re: Addition to Mailing/distribution list) Message-ID: <203:holtz@cascade.carleton.cdn> Date: Fri, 24-Jan-86 12:59:42 EST Article-I.D.: cascade.203:holtz Posted: Fri Jan 24 12:59:42 1986 Date-Received: Sat, 25-Jan-86 05:32:51 EST Sender: daemon@ucbvax.berkeley.edu.BERKELEY.EDU Organization: The ARPA Internet Lines: 19 Approved: apollo@yale-comix.arpa > Are there any known bugs using the debugger for intensive > FORTRAN debugging?? There are some: 1. Gets confused when stepping over statements with MAX and MIN intrinsics. Try stepping over the following code: VAL1 = 0.49 VAL2 = 0.5 YMAX = AMAX1(VAL1,VAL2) YMIN = AMIN1(VAL1,VAL2) YMAX will get 0.49, and YMIN will be 0.50 (i.e., switched). Works fine when not single-stepped. 2. Doesn't know the dimensions of array dummy parameters with variable dimensions. i.e. SUBROUTINE FOO(X,N) REAL X(N,N) Debugger will not be able to display elements of X properly.