Module Gccjit.Struct

module Struct: sig .. end

val create : Gccjit.context ->
?loc:Gccjit.location -> string -> Gccjit.field list -> Gccjit.struct_
Create a struct type, with the given name and fields.
val opaque : Gccjit.context -> ?loc:Gccjit.location -> string -> Gccjit.struct_
Construct a new struct type, with the given name, but without specifying the fields. The fields can be omitted (in which case the size of the struct is not known), or later specified using Gccjit.Struct.set_fields.
val set_fields : ?loc:Gccjit.location -> Gccjit.struct_ -> Gccjit.field list -> unit
Populate the fields of a formerly-opaque struct type.

This can only be called once on a given struct type.

val to_string : Gccjit.struct_ -> string
Get a human-readable description of this object.