mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 07:18:17 +02:00
Remove 2nd copy of do_memcpy
This commit is contained in:
parent
c82c3335e1
commit
ae695e3566
1 changed files with 0 additions and 9 deletions
|
|
@ -56,15 +56,6 @@ static void intelFreeTextureImageData( GLcontext *ctx,
|
|||
}
|
||||
}
|
||||
|
||||
static void *do_memcpy( void *dest, const void *src, size_t n )
|
||||
{
|
||||
if ( (((unsigned)src) & 63) ||
|
||||
(((unsigned)dest) & 63))
|
||||
return __memcpy(dest, src, n);
|
||||
else
|
||||
return memcpy(dest, src, n);
|
||||
}
|
||||
|
||||
|
||||
#ifndef __x86_64__
|
||||
static unsigned
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue