This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
Re: [PATCH 1/4] Improve generic strcspn performance
- From: Richard Henderson <rth at twiddle dot net>
- To: Adhemerval Zanella <adhemerval dot zanella at linaro dot org>, libc-alpha at sourceware dot org
- Cc: Wilco Dijkstra <wdijkstr at arm dot com>
- Date: Thu, 31 Mar 2016 10:00:08 -0700
- Subject: Re: [PATCH 1/4] Improve generic strcspn performance
- Authentication-results: sourceware.org; auth=none
- References: <1459178389-14133-1-git-send-email-adhemerval dot zanella at linaro dot org> <1459178389-14133-2-git-send-email-adhemerval dot zanella at linaro dot org>
On 03/28/2016 08:19 AM, Adhemerval Zanella wrote:
> + s = (unsigned char *) ((size_t)s & ~3);
Nit: s/size_t/uintptr_t/.
It's the same type for all supported targets,
but the spelling says what you mean.
r~