summaryrefslogtreecommitdiff
path: root/cpu.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-02-15 03:50:15 -0500
committerJeffrey Walton <noloader@gmail.com>2020-02-15 03:50:15 -0500
commitdb97202654bf93aff555211ba47de3ee5f93e3a2 (patch)
tree8a7fb71019b5bb54d432bab6ad42b1dd7aeefb19 /cpu.cpp
parent36a97733de7b744fc412385a897a86568e47877e (diff)
downloadcryptopp-git-db97202654bf93aff555211ba47de3ee5f93e3a2.tar.gz
Add Emacs and Vi files to gitignore
Diffstat (limited to 'cpu.cpp')
-rw-r--r--cpu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu.cpp b/cpu.cpp
index 13cda3dd..95561742 100644
--- a/cpu.cpp
+++ b/cpu.cpp
@@ -58,7 +58,7 @@ unsigned long int getauxval(unsigned long int) { return 0; }
#endif
// Visual Studio 2008 and below are missing _xgetbv and _cpuidex.
-// See x64dll.asm for the function bodies.
+// The 32-bit versions use inline ASM below. The 64-bit versions are in x64dll.asm.
#if defined(_MSC_VER) && defined(_M_X64)
extern "C" unsigned long long __fastcall XGETBV64(unsigned int);
extern "C" unsigned long long __fastcall CPUID64(unsigned int, unsigned int, unsigned int*);