diff options
Diffstat (limited to 'ArmPkg/Library/CompilerIntrinsicsLib/Arm/memcpy.S')
-rw-r--r-- | ArmPkg/Library/CompilerIntrinsicsLib/Arm/memcpy.S | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ArmPkg/Library/CompilerIntrinsicsLib/Arm/memcpy.S b/ArmPkg/Library/CompilerIntrinsicsLib/Arm/memcpy.S index 2582a81f90..606741f4a1 100644 --- a/ArmPkg/Library/CompilerIntrinsicsLib/Arm/memcpy.S +++ b/ArmPkg/Library/CompilerIntrinsicsLib/Arm/memcpy.S @@ -14,10 +14,9 @@ .text .align 2 - .globl _memcpy -_memcpy: - @ args = 0, pretend = 0, frame = 0 - @ frame_needed = 1, uses_anonymous_args = 0 + .globl ASM_PFX(memcpy) + +ASM_PFX(memcpy): stmfd sp!, {r7, lr} mov ip, #0 add r7, sp, #0 |