From 1400757fea661d8e7f4a4b73465507054df4870d Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 25 May 2019 00:43:27 -0400 Subject: [PATCH] Update comments --- cpu.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cpu.cpp b/cpu.cpp index 0ba2e954..28792d3e 100644 --- a/cpu.cpp +++ b/cpu.cpp @@ -62,11 +62,11 @@ extern "C" unsigned long long __fastcall XGETBV64(unsigned int); #endif #if CRYPTOGAMS_ARM_SHA1 || CRYPTOGAMS_ARM_SHA256 || CRYPTOGAMS_ARM_SHA512 -// The Cryptogams code uses a global variable named CRYPTOGAMS_armcaps +// The Cryptogams code uses a global variable named CRYPTOGAMS_armcap_P // for capabilities like ARMv7 and NEON. We allocate storage for -// CRYPTOGAMS_armcaps, and the Cryptogams modules use our symbol. -// The Cryptogams code defines ARMV7_NEON as 1<<0, so we need to -// set the bits accordingly in CRYPTOGAMS_armcaps. +// CRYPTOGAMS_armcap_P, and the Cryptogams object files use our symbol. +// The Cryptogams code defines ARMV7_NEON as 1<<0, so we need to set +// the bits accordingly in CRYPTOGAMS_armcap_P. extern "C" unsigned int CRYPTOGAMS_armcap_P; unsigned int CRYPTOGAMS_armcap_P = 0; #endif