diff options
author | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-03-17 02:29:12 +0000 |
---|---|---|
committer | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-03-17 02:29:12 +0000 |
commit | 4e471bfd4de222ee74b45e1261b0796cc8441619 (patch) | |
tree | 1335dcb4f05f4ba0e8a55b0b78204562c1e1f895 /ArmPkg/Library/CompilerIntrinsicsLib/Arm/umodsi3.S | |
parent | bff4e9ea4f2acbca0ba03d501b55ac733cc9a8bb (diff) | |
download | edk2-platforms-4e471bfd4de222ee74b45e1261b0796cc8441619.tar.xz |
Update intrinsics for code sourcery gcc
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10262 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ArmPkg/Library/CompilerIntrinsicsLib/Arm/umodsi3.S')
-rw-r--r-- | ArmPkg/Library/CompilerIntrinsicsLib/Arm/umodsi3.S | 22 |
1 files changed, 5 insertions, 17 deletions
diff --git a/ArmPkg/Library/CompilerIntrinsicsLib/Arm/umodsi3.S b/ArmPkg/Library/CompilerIntrinsicsLib/Arm/umodsi3.S index 4cde76beb5..129cedff95 100644 --- a/ArmPkg/Library/CompilerIntrinsicsLib/Arm/umodsi3.S +++ b/ArmPkg/Library/CompilerIntrinsicsLib/Arm/umodsi3.S @@ -14,27 +14,15 @@ .text .align 2 - .globl ___umodsi3 -___umodsi3: - @ args = 0, pretend = 0, frame = 0 - @ frame_needed = 1, uses_anonymous_args = 0 + .globl ASM_PFX(__umodsi3) + +ASM_PFX(__umodsi3): stmfd sp!, {r4, r5, r7, lr} add r7, sp, #8 mov r5, r0 mov r4, r1 - bl L___udivsi3$stub + bl ASM_PFX(__udivsi3) mul r0, r4, r0 rsb r0, r0, r5 ldmfd sp!, {r4, r5, r7, pc} - .section __TEXT,__symbol_stub4,symbol_stubs,none,12 - .align 2 -L___udivsi3$stub: - .indirect_symbol ___udivsi3 - ldr ip, L___udivsi3$slp - ldr pc, [ip, #0] -L___udivsi3$slp: - .long L___udivsi3$lazy_ptr - .lazy_symbol_pointer -L___udivsi3$lazy_ptr: - .indirect_symbol ___udivsi3 - .long dyld_stub_binding_helper + |