mirror of https://github.com/acidanthera/audk.git
ArmPkg/CompilerIntrinsicsLib: Fix __aeabi_memclr and __aeabi_memclr4
The passed arguments did not match the __aeabi_memset prototype. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12459 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
886f97c86b
commit
ae7f81cba3
|
@ -47,9 +47,11 @@ L9
|
||||||
ldmfd sp!, {r7, pc}
|
ldmfd sp!, {r7, pc}
|
||||||
|
|
||||||
__aeabi_memclr
|
__aeabi_memclr
|
||||||
|
mov r2, r1
|
||||||
mov r1, #0
|
mov r1, #0
|
||||||
b __aeabi_memset
|
b __aeabi_memset
|
||||||
|
|
||||||
__aeabi_memclr4
|
__aeabi_memclr4
|
||||||
|
mov r2, r1
|
||||||
mov r1, #0
|
mov r1, #0
|
||||||
b __aeabi_memset
|
b __aeabi_memset
|
||||||
|
|
Loading…
Reference in New Issue