Okay, I was trying to compile a program, and I got the following:
Compiling file: SmallRad.f95 C:\Fortran\SmallRad.F95(10) : comment 981 - Specifying the kind of the type REAL with the constant '2' is non-portable - 'SELECTED_REAL_KIND(15,307)' would be better C:\Fortran\SmallRad.F95(72) : comment 1005 - This declaration of RR has caused the intrinsic of the same name to be inaccessible Access violation: The instruction at address 004357b7 attempted to read from location 00000008 0043577c is_type_eq(<ptr>structÄtype_definition,<ptr>structÄtype_definition) [+003b]
00459192 read_module_entity(enumÄlogical)#1D [+0d96]
0045a95a process_binary_module(int,enumÄlogical)#1D [+034b]
0045b146 process_use_stmt(<ptr>char,<ref>int) [+0264]
0040a953 parse_declaration_statement(<ptr>char,int,int,<ref>int) [+25e2]
0041200b handle_token(<ptr>char,int,int,int,int,<ref>int) [+0df5]
0040514d ProcessEntireLine(void) [+0695]
0040619b compile(<ptr>char) [+00ce]
eax=00000000 ebx=0000000b ecx=04433d94 edx=00000000 esi=0440edc8 edi=0442c54c ebp=0383f220 esp=0383f1fc IOPL=0 ds=0023 es=0023 fs=003b gs=0000 cs=001b ss=0023 flgs=00210206 [NC EP NZ SN DN NV] 0360/4820 TSTK=1 [ ] 004357b7 mov edi,[eax+0x8]
004357ba mov [ebp-0x10],edi
How do I figure out what statement was involved and what do I do to fix it? The dump appears to be of instructions and the contents of registers for the compiler, not the program being compiled.
-BPL