This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug fortran/14976] [gfortran] .space is wrong


------- Additional Comments From tobi at gcc dot gnu dot org  2004-05-16 20:18 -------
Reduced testcase:
       CHARACTER*80 DL(2)
       DATA DL /'$file',
     1          'oms omsmc.i2'/

       dl(1) = "HI"
       END
The assembly generated for
 DATA DL /'$file',
looks like 
        .ascii  "$file"
        .zero   75
        .zero   4294967228        ;; asm complains here
Where does the second .zero come from?

This doesn't happen if dl is a scalar.

-- 


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]