diff options
author | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-12-15 01:06:20 +0000 |
---|---|---|
committer | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-12-15 01:06:20 +0000 |
commit | 63ca7402171de8a3f412ac1709d2423e25af7690 (patch) | |
tree | 8ef1890ed12e8c1a850c5ee4f6aac068b54863a0 /ArmPkg/Library/BaseMemoryLibStm | |
parent | d9629029f246b01893c693e2b7dd00975475584f (diff) | |
download | edk2-platforms-63ca7402171de8a3f412ac1709d2423e25af7690.tar.xz |
Update remaining ARM .S files with INTERWORK_FUNC macro. This is the 2nd half of check-in 11167.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11169 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ArmPkg/Library/BaseMemoryLibStm')
-rwxr-xr-x | ArmPkg/Library/BaseMemoryLibStm/Arm/CopyMem.S | 1 | ||||
-rwxr-xr-x | ArmPkg/Library/BaseMemoryLibStm/Arm/SetMem.S | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ArmPkg/Library/BaseMemoryLibStm/Arm/CopyMem.S b/ArmPkg/Library/BaseMemoryLibStm/Arm/CopyMem.S index 9d0d389a13..1cd1dae54f 100755 --- a/ArmPkg/Library/BaseMemoryLibStm/Arm/CopyMem.S +++ b/ArmPkg/Library/BaseMemoryLibStm/Arm/CopyMem.S @@ -40,6 +40,7 @@ InternalMemCopyMem ( .text
.align 2
.globl ASM_PFX(InternalMemCopyMem)
+INTERWORK_FUNC(InternalMemCopyMem)
ASM_PFX(InternalMemCopyMem):
stmfd sp!, {r4-r11, lr}
diff --git a/ArmPkg/Library/BaseMemoryLibStm/Arm/SetMem.S b/ArmPkg/Library/BaseMemoryLibStm/Arm/SetMem.S index 94aa0ca3db..29a50f5a49 100755 --- a/ArmPkg/Library/BaseMemoryLibStm/Arm/SetMem.S +++ b/ArmPkg/Library/BaseMemoryLibStm/Arm/SetMem.S @@ -38,6 +38,7 @@ InternalMemSetMem ( .text
.align 2
.globl ASM_PFX(InternalMemSetMem)
+INTERWORK_FUNC(InternalMemSetMem)
ASM_PFX(InternalMemSetMem):
stmfd sp!, {r4-r11, lr}
|