Re: Self-referential union?

2025-02-02 Thread Basile Starynkevitch
/bismon or on https://github.com/bstarynk/misc-basile/blob/master/manydl.c Regards from near Paris in France PS. My open source project is an inference engine on https://github.com/RefPerSys/RefPerSys/ -- Basile STARYNKEVITCH 8 rue de la Faïencerie 92340 Bourg-la-Reine, Fran

Re: Running Compiled Guile Objects

2024-12-14 Thread Basile Starynkevitch
on't know how to make that happen) Regards from near Paris in France. -- Basile STARYNKEVITCH 8 rue de la Faïencerie 92340 Bourg-la-Reine, France http://starynkevitch.net/Basile & https://github.com/bstarynk

GCC 14 jit API in C++ for creating union types?

2024-12-13 Thread Basile Starynkevitch
x27;t explain how to create a GCCJIT union type. Is there a simple C++ example creating a union for libgccjit 14? Thanks -- Basile STARYNKEVITCH 8 rue de la Faïencerie 92340 Bourg-la-Reine, France http://starynkevitch.net/Basile & https://github.com/bstarynk

Re: GCC 14 jit API in C++ for creating union types?

2024-12-13 Thread Basile Starynkevitch
On Fri, 2024-12-13 at 11:03 +0100, Basile Starynkevitch wrote: > Hello all, > > On GNU Linux/Ubuntu/x86_64 I am using libgccjit++ (in > https://github.com/RefPerSys/RefPerSys/ - a GPLv3+ inference engine > project) but I cannot understand how to create in C++ a union type. >

Re: GCC 14 jit API in C++ for creating union types?

2024-12-13 Thread Basile Starynkevitch
On Fri, 2024-12-13 at 10:48 -0500, David Malcolm wrote: > On Fri, 2024-12-13 at 11:24 +0100, Basile Starynkevitch wrote: > > On Fri, 2024-12-13 at 11:03 +0100, Basile Starynkevitch wrote: > > > Hello all, > > > > > > On GNU Linux/Ubuntu/x86_64 I am using libg

GCC JIT PR118587 - tentative patch 1

2025-01-24 Thread Basile Starynkevitch
}; + int get_column() const { +return m_column; + }; + bool is_created_by_user() const { +return m_created_by_user; + }; }; class type : public memento Could someone please review it (and if autorized to) apply it? I feel it is pretty trivial and definitely useful. Thanks