summaryrefslogtreecommitdiff
path: root/x64dll.asm
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-05-21 19:44:48 -0400
committerJeffrey Walton <noloader@gmail.com>2019-05-21 19:44:48 -0400
commitf396ade93a688053d6c392a64bd90319216fff86 (patch)
treea3a13f9ddfc26a5987878d4a31faf0a4ac9b3767 /x64dll.asm
parent6f3be56c9dd29f38cd3c36be56c438fea54ea919 (diff)
downloadcryptopp-git-f396ade93a688053d6c392a64bd90319216fff86.tar.gz
Rename XGETBV to XGETBV64
Diffstat (limited to 'x64dll.asm')
-rw-r--r--x64dll.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/x64dll.asm b/x64dll.asm
index a4a73e3f..fdb88ea7 100644
--- a/x64dll.asm
+++ b/x64dll.asm
@@ -1965,7 +1965,7 @@ ret
SHA256_HashMultipleBlocks_SSE2 ENDP
ALIGN 8
-XGETBV PROC
+XGETBV64 PROC
;; First paramter is RCX, and xgetbv expects the CTRL in ECX
;; http://www.agner.org/optimize/vectorclass/read.php?i=65
DB 0fh, 01h, 0d0h
@@ -1974,7 +1974,7 @@ and rax, 0ffffffffh
shl rdx, 32
or rax, rdx
ret
-XGETBV ENDP
+XGETBV64 ENDP
_TEXT ENDS
END