X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=ArmPkg%2FLibrary%2FCompilerIntrinsicsLib%2FArm%2Fmemcpy.asm;fp=ArmPkg%2FLibrary%2FCompilerIntrinsicsLib%2FArm%2Fmemcpy.asm;h=0000000000000000000000000000000000000000;hp=ae911971286ac3367b87199e5e5e01ec729e1e62;hb=a0cf6b8d93d7fab44f8bcb850ebbe696d0c3d4bd;hpb=00afc8f82061677fedc86cb05e3b8c75a3c986ff diff --git a/ArmPkg/Library/CompilerIntrinsicsLib/Arm/memcpy.asm b/ArmPkg/Library/CompilerIntrinsicsLib/Arm/memcpy.asm deleted file mode 100644 index ae91197128..0000000000 --- a/ArmPkg/Library/CompilerIntrinsicsLib/Arm/memcpy.asm +++ /dev/null @@ -1,40 +0,0 @@ -//------------------------------------------------------------------------------ -// -// Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.
-// -// This program and the accompanying materials -// are licensed and made available under the terms and conditions of the BSD License -// which accompanies this distribution. The full text of the license may be found at -// http://opensource.org/licenses/bsd-license.php -// -// THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -// WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. -// -//------------------------------------------------------------------------------ - - - - INCLUDE AsmMacroExport.inc - -; -;VOID -;EFIAPI -;__aeabi_memcpy ( -; IN VOID *Destination, -; IN VOID *Source, -; IN UINT32 Size -; ); -; - RVCT_ASM_EXPORT __aeabi_memcpy - cmp r2, #0 - bxeq lr - push {lr} - mov lr, r0 -L5 - ldrb r3, [r1], #1 - strb r3, [lr], #1 - subs r2, r2, #1 - bne L5 - pop {pc} - - END