summaryrefslogtreecommitdiff
path: root/mpn/x86_64/copyi.asm
diff options
context:
space:
mode:
Diffstat (limited to 'mpn/x86_64/copyi.asm')
-rw-r--r--mpn/x86_64/copyi.asm9
1 files changed, 7 insertions, 2 deletions
diff --git a/mpn/x86_64/copyi.asm b/mpn/x86_64/copyi.asm
index d5cbdd644..1dd6c3168 100644
--- a/mpn/x86_64/copyi.asm
+++ b/mpn/x86_64/copyi.asm
@@ -1,6 +1,6 @@
dnl AMD64 mpn_copyi -- copy limb vector, incrementing.
-dnl Copyright 2003, 2005, 2007 Free Software Foundation, Inc.
+dnl Copyright 2003, 2005, 2007, 2011 Free Software Foundation, Inc.
dnl This file is part of the GNU MP Library.
@@ -39,10 +39,14 @@ define(`rp',`%rdi')
define(`up',`%rsi')
define(`n',`%rdx')
+ABI_SUPPORT(DOS64)
+ABI_SUPPORT(ELF64)
+
ASM_START()
TEXT
ALIGN(16)
PROLOGUE(mpn_copyi)
+ DOS64_ENTRY(3)
leaq -8(rp), rp
subq $4, n
jc L(end)
@@ -72,5 +76,6 @@ L(end): shrl R32(%rdx) C edx = lowpart(n)
movq 8(up), %r9
movq %r8, 8(rp)
movq %r9, 16(rp)
-1: ret
+1: DOS64_EXIT()
+ ret
EPILOGUE()