[9173] in Athena Bugs
dbx on RT's
daemon@ATHENA.MIT.EDU (wchuang@Athena.MIT.EDU)
Sat Apr 4 15:09:21 1992
From: wchuang@Athena.MIT.EDU
Date: Sat, 4 Apr 92 15:09:10 -0500
To: bugs@Athena.MIT.EDU
This is on an IBM RT/PC:
> mountain-dew% cat > test.f
> implicit real*8(a-h,o-z)
> a=1
> b=2
> c=3
> write (*,*)a,b,c
> end
> mountain-dew% f77 -g test.f
> test.f:
> MAIN:
> mountain-dew% dbx a.out
> dbx version 3.5 of 7/28/91 17:28 (minos).
> Type 'help' for help.
> reading symbolic information ...
> (dbx) stop 3
> [1] stop 3
> (dbx) run
> 1.0000000000000 2.0000000000000 3.0000000000000
>
> execution completed
> (dbx) list
> 1 implicit real*8(a-h,o-z)
> 2 a=1
> 3 b=2
> 4 c=3
> 5 write (*,*)a,b,c
> 6 end
> (dbx) stop 4
> [3] stop 4
> (dbx) run
> 1.0000000000000 2.0000000000000 3.0000000000000
>
> illegal instruction in exit at 0x7eda
> 00007eda (exit+0x16) balix r15,87F4
> (dbx)
Here's the same bit on a Vax3100:
> navigator% f77 -g test.f
> test.f:
> MAIN:
> navigator% dbx a.out
> dbx version 3.40 of 7/8/91 16:23 (ajax).
> Type 'help' for help.
> reading symbolic information ...
> (dbx) stop 3
> [1] stop 3
> (dbx) run
> 1.0000000000000 2.0000000000000 3.0000000000000
> stopped in exit at 0x5031
> 00005031 pushl 4(ap)
> (dbx) stop 4
> [3] stop 4
> (dbx) cont
> program exited
> (dbx)
Anything to be done about this?