public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/45211]  New: C interoperable error when compiling BIND(C) function in a module.
@ 2010-08-06 17:13 brtnfld at hdfgroup dot org
  2010-08-06 17:26 ` [Bug fortran/45211] " dominiq at lps dot ens dot fr
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: brtnfld at hdfgroup dot org @ 2010-08-06 17:13 UTC (permalink / raw)
  To: gcc-bugs

gfortran (all versions 4.2-4.5) reports the error when trying to compile code
below:

Error: Type 'link_info' at (1) is a parameter to the BIND(C)  procedure
'liter_cb' but is not C interoperable because derived type 'info_t' is not C
interoperable

when I remove the module and compile just the function it compiles fine. info_t
is interoperable with C


MODULE liter_cb_mod
USE ISO_C_BINDING
CONTAINS
  FUNCTION liter_cb(link_info) bind(C)
    USE ISO_C_BINDING
    IMPLICIT NONE

    INTEGER(c_int) liter_cb

    TYPE, bind(C) :: info_t
       INTEGER(c_int) :: type
    END TYPE info_t

    TYPE(info_t) :: link_info

    liter_cb = 0

  END FUNCTION liter_cb

END MODULE liter_cb_mod


-- 
           Summary: C interoperable error when compiling BIND(C) function in
                    a module.
           Product: gcc
           Version: 4.4.0
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: brtnfld at hdfgroup dot org


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


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2010-08-15 16:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-08-06 17:13 [Bug fortran/45211] New: C interoperable error when compiling BIND(C) function in a module brtnfld at hdfgroup dot org
2010-08-06 17:26 ` [Bug fortran/45211] " dominiq at lps dot ens dot fr
2010-08-09 15:03 ` brtnfld at hdfgroup dot org
2010-08-14 16:25 ` burnus at gcc dot gnu dot org
2010-08-15 16:21 ` burnus at gcc dot gnu dot org
2010-08-15 16:23 ` burnus at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).