summaryrefslogtreecommitdiff
path: root/x64dll.asm
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-05-21 19:31:13 -0400
committerJeffrey Walton <noloader@gmail.com>2019-05-21 19:31:13 -0400
commit02cdbf61d3a6d824469f9373b68c26dea36b3bcc (patch)
treefee6b7c7bdd87f619eb5e4051cf75f163cb45a91 /x64dll.asm
parentcf85d768b49a38f89b85404ae9ef4db6183e9adc (diff)
downloadcryptopp-git-02cdbf61d3a6d824469f9373b68c26dea36b3bcc.tar.gz
Rename ExtendedControlRegister to XGETBV
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 33fa6a17..a4a73e3f 100644
--- a/x64dll.asm
+++ b/x64dll.asm
@@ -1965,7 +1965,7 @@ ret
SHA256_HashMultipleBlocks_SSE2 ENDP
ALIGN 8
-ExtendedControlRegister PROC
+XGETBV 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
-ExtendedControlRegister ENDP
+XGETBV ENDP
_TEXT ENDS
END