------- Comment #11 from dominiq at lps dot ens dot fr  2009-04-08 14:06 -------
Note that the following code

        program test
        a$a = 12
        $a = 12    ! error
        $i = 11
        $b = 0.5
        print *, a$a, $a, $b, $i
        end

when compiled with ifort:

   12.00000              12           0          11

i.e., the variables with a name starting with a $ are integers. So, if you are
interested by getting reliable results with your "legacy" code, you have to
carefully read the manual of the compiler with which it was supposed to work
and this could take much longer that the "5 minutes to write the script to so"
of comment #11!


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39670

Reply via email to