Re: [PATCH 1/1] test/ring: remove excessive inlining

2022-05-11 Thread Stanisław Kardach
On Wed, May 11, 2022 at 1:24 AM Honnappa Nagarahalli wrote: > Is there a bug report created for this? Is it possible to add a link to the > bug report? I have found a bug for a similar issue (with "if" conditional): https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93062 I'll add it in v2.

Re: [PATCH 1/1] test/ring: remove excessive inlining

2022-05-11 Thread Bruce Richardson
On Tue, May 10, 2022 at 11:23:53PM +, Honnappa Nagarahalli wrote: > + Bruce, Stephen > > > > > > > Forcing inlining in test_ring_enqueue and test_ring_dequeue can cause the > > compiled code to grow extensively when compiled with no optimization > > (-O0 or -Og). This is default in the meso

RE: [PATCH 1/1] test/ring: remove excessive inlining

2022-05-10 Thread Honnappa Nagarahalli
+ Bruce, Stephen > > Forcing inlining in test_ring_enqueue and test_ring_dequeue can cause the > compiled code to grow extensively when compiled with no optimization > (-O0 or -Og). This is default in the meson's debug configuration. This can > collide > with compiler bugs and cause issues dur

[PATCH 1/1] test/ring: remove excessive inlining

2022-05-10 Thread Stanislaw Kardach
Forcing inlining in test_ring_enqueue and test_ring_dequeue can cause the compiled code to grow extensively when compiled with no optimization (-O0 or -Og). This is default in the meson's debug configuration. This can collide with compiler bugs and cause issues during linking of unit tests where th