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

2022-05-23 Thread David Marchand
On Wed, May 11, 2022 at 5:49 PM Bruce Richardson wrote: > > On Wed, May 11, 2022 at 05:07:25PM +0200, Stanislaw Kardach wrote: > > 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). Th

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

2022-05-19 Thread Konstantin Ananyev
11/05/2022 16:07, 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

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

2022-05-11 Thread Honnappa Nagarahalli
> > 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

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

2022-05-11 Thread Bruce Richardson
On Wed, May 11, 2022 at 05:07:25PM +0200, Stanislaw Kardach wrote: > 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 collid

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

2022-05-11 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