summaryrefslogtreecommitdiff
path: root/x86_64
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2021-09-09 21:29:07 +0200
committerNiels Möller <nisse@lysator.liu.se>2021-09-09 21:29:07 +0200
commitd5b0b9cb4f70fb9ae86512d4fbc4ba8536d1f493 (patch)
treeceb8ae436cf4d774e5a552be63bed9c094a2d0d7 /x86_64
parenta4f24de1639eda396f9f5ad34ccc1a2fbb6a00b8 (diff)
downloadnettle-d5b0b9cb4f70fb9ae86512d4fbc4ba8536d1f493.tar.gz
Fix fat builds for x86_64 windows
Diffstat (limited to 'x86_64')
-rw-r--r--x86_64/fat/cpuid.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/x86_64/fat/cpuid.asm b/x86_64/fat/cpuid.asm
index 3987cc7c..8b976fbe 100644
--- a/x86_64/fat/cpuid.asm
+++ b/x86_64/fat/cpuid.asm
@@ -41,7 +41,7 @@ C output pointer: %rsi
.text
ALIGN(16)
PROLOGUE(_nettle_cpuid)
- W64_ENTRY(2)
+ W64_ENTRY(2, 0)
push %rbx
movl %edi, %eax
@@ -53,7 +53,7 @@ PROLOGUE(_nettle_cpuid)
mov %edx, 12(%rsi)
pop %rbx
- W64_EXIT(2)
+ W64_EXIT(2, 0)
ret
EPILOGUE(_nettle_cpuid)