Probably it's good to keep /RU for 64bit if for 32bits it is already mostly done.
As to my another suggestion 'Go back one line' in SDBG I will remind you one situation everyone had in the past where this feature will be very useful shortening debug when reading files with multiple READ statements and getting format mismatch. If you redirect the code when hitting error into some label ( say, label 100 )
READ(22,'(1pe10.3)',err=100) A
READ(22,'(1pe10.3)',err=100) A1
READ(22,'(1pe10.3)',err=100) A2
READ(22,'(1pe10.3)',err=100) A3
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
READ(22,'(1pe10.3)',err=100) A2114
READ(22,'(1pe10.3)',err=100) A2115
READ(22,'(1pe10.3)',err=100) A2116
...............................................
100 print*,' Error reading file'
you do not know at which line this error happened and trying to catch it in SDBG very slowly, step by step. Getting annoyed by the multiple pushing and clicking you start push buttons faster, then boooooom you miss the error and did not remembered at which line this was.
This is so annoying that I usually complicate the reading process with multiple my own debug options so that i count lines. But all these complications make source code very muddy