...@gcc.gnu.org
Ämne: Re: [PATCH] jit: Add support for global rvalue initialization and ctors
Hi,
I would favor adding support for this kind of initialization to libgccjit.
Does it also support the libgccjit equivalent of the following C module, which
contains forward references in the stru
Hi,
I would favor adding support for this kind of initialization to libgccjit.
Does it also support the libgccjit equivalent of the following C module,
which contains forward references in the struct initializers?
struct bar bar;
struct foo foo;
struct foo
{
struct bar *b;
};
struct bar
{