Subject: Re: more MIPS memcpy bugs...
To: Garrett D'Amore <garrett_damore@tadpole.com>
From: Jason Thorpe <thorpej@shagadelic.org>
List: tech-toolchain
Date: 05/18/2006 06:10:59
On May 17, 2006, at 11:43 PM, Garrett D'Amore wrote:

> Adding -fno-builtin-memcpy to makeoptions didn't prevent the compiler
> from inlining memcpy.  If anyone has any advice, I'd love to hear it!
> (This is kernel code, btw.)

That's because we do this in libkern.h:

#define memcpy(d, s, l)         __builtin_memcpy(d, s, l)

-- thorpej