Re: [PATCH v7 0/1] refs.c: SSE4.2 optimizations for check_refname_component

2014-06-14 Thread Philip Oakley
From: "Torsten Bögershausen" On 2014-06-13 03.18, David Turner wrote: [] It is too old for my patch because it doesn't support ifunc (and I suspect that no version of GCC for Windows supports ifunc). But that does not seem to be what is going on in your error message. Instead, when we #inclu

Re: [PATCH v7 0/1] refs.c: SSE4.2 optimizations for check_refname_component

2014-06-12 Thread Torsten Bögershausen
On 2014-06-13 03.18, David Turner wrote: [] > > It is too old for my patch because it doesn't support ifunc (and I > suspect that no version of GCC for Windows supports ifunc). But that > does not seem to be what is going on in your error message. Instead, > when we #include , we get compat/cpui

Re: [PATCH v7 0/1] refs.c: SSE4.2 optimizations for check_refname_component

2014-06-12 Thread David Turner
On Tue, 2014-06-10 at 08:04 +0200, Johannes Sixt wrote: > Am 6/10/2014 1:05, schrieb Junio C Hamano: > > Junio C Hamano writes: > > > >> David Turner writes: > >> > >>> Since Junio has picked up the first patch from previous versions of > >>> this series, I'm just going to send the second (SSE)

Re: [PATCH v7 0/1] refs.c: SSE4.2 optimizations for check_refname_component

2014-06-09 Thread Junio C Hamano
Johannes Sixt writes: > And I get this when I compile on Windows with msysgit: > > CC abspath.o > In file included from git-compat-util.h:694, > from cache.h:4, > from abspath.c:1: > compat/cpuid.h: In function 'processor_supports_sse42': > compat/cpuid.h:11:

Re: [PATCH v7 0/1] refs.c: SSE4.2 optimizations for check_refname_component

2014-06-09 Thread Johannes Sixt
Am 6/10/2014 1:05, schrieb Junio C Hamano: > Junio C Hamano writes: > >> David Turner writes: >> >>> Since Junio has picked up the first patch from previous versions of >>> this series, I'm just going to send the second (SSE) one. I decided >>> not to s/NO_SSE42/!HAVE_SSE42/ because it looks li

Re: [PATCH v7 0/1] refs.c: SSE4.2 optimizations for check_refname_component

2014-06-09 Thread Junio C Hamano
Junio C Hamano writes: > David Turner writes: > >> Since Junio has picked up the first patch from previous versions of >> this series, I'm just going to send the second (SSE) one. I decided >> not to s/NO_SSE42/!HAVE_SSE42/ because it looks like git mostly uses >> the former convention (for ins

Re: [PATCH v7 0/1] refs.c: SSE4.2 optimizations for check_refname_component

2014-06-09 Thread David Turner
On Mon, 2014-06-09 at 15:16 -0700, Junio C Hamano wrote: > David Turner writes: > > > Since Junio has picked up the first patch from previous versions of > > this series, I'm just going to send the second (SSE) one. I decided > > not to s/NO_SSE42/!HAVE_SSE42/ because it looks like git mostly us

Re: [PATCH v7 0/1] refs.c: SSE4.2 optimizations for check_refname_component

2014-06-09 Thread Junio C Hamano
David Turner writes: > Since Junio has picked up the first patch from previous versions of > this series, I'm just going to send the second (SSE) one. I decided > not to s/NO_SSE42/!HAVE_SSE42/ because it looks like git mostly uses > the former convention (for instance, that's what GIT_PARSE_WIT

[PATCH v7 0/1] refs.c: SSE4.2 optimizations for check_refname_component

2014-06-05 Thread David Turner
Since Junio has picked up the first patch from previous versions of this series, I'm just going to send the second (SSE) one. I decided not to s/NO_SSE42/!HAVE_SSE42/ because it looks like git mostly uses the former convention (for instance, that's what GIT_PARSE_WITH generates). Thanks for all o