>In modern compilers, memcpy() is usually an intrinsic function. This means that it is automatically inlined to the most efficient sequence of instructions.
I know and I had become so used to Vis C inlining with rep movsd instructions that I was shocked to look at the assembler output and find... yep you guessed it, and mere bl memcpy!!
Sad but true. Is there a _memcpy or something which eVC can inline?