Hi
On Mon, Mar 7, 2022 at 9:41 PM Richard Henderson <
richard.hender...@linaro.org> wrote:
> On 3/1/22 04:46, marcandre.lur...@redhat.com wrote:
> > Replace the global variables with inlined helper functions.
> getpagesize() is very
> > likely annotated with a "const" function attribute (at least
On 3/1/22 04:46, marcandre.lur...@redhat.com wrote:
Replace the global variables with inlined helper functions. getpagesize() is
very
likely annotated with a "const" function attribute (at least with glibc), and
thus
optimization should apply even better.
This avoids the need for a constructor
On Tue, Mar 1, 2022 at 6:48 PM wrote:
> From: Marc-André Lureau
>
> Replace the global variables with inlined helper functions. getpagesize()
> is very
> likely annotated with a "const" function attribute (at least with glibc),
> and thus
> optimization should apply even better.
>
> This avoids
From: Marc-André Lureau
Replace the global variables with inlined helper functions. getpagesize() is
very
likely annotated with a "const" function attribute (at least with glibc), and
thus
optimization should apply even better.
This avoids the need for a constructor initialization too.
Signed