Re: [HACKERS] [PATCHES] inline newNode()

2002-10-10 Thread Gavin Sherry
On 10 Oct 2002, Neil Conway wrote: Well, I'd assume any C library / compiler of half-decent quality on any platform would provide assembly optimized versions of common stdlib functions like memset(). While playing around with memset() on my machine (P4 running Linux, glibc 2.2.5, GCC

Re: [HACKERS] [PATCHES] inline newNode()

2002-10-10 Thread Neil Conway
Gavin Sherry [EMAIL PROTECTED] writes: On 10 Oct 2002, Neil Conway wrote: Compiled with '-DBUFFER_SIZE=256 -O2', I get the following results in seconds: MemSet(): ~9.6 memset(): ~19.5 __builtin_memset(): ~10.00 I ran the same code. I do not understand the results you go.