summaryrefslogtreecommitdiff
path: root/integer.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-01-21 14:19:00 -0500
committerJeffrey Walton <noloader@gmail.com>2018-01-21 14:19:00 -0500
commitc4e0942a68a3242ff9d9c4e9a0da26a06b57f201 (patch)
tree34c7417786620c619930e8b162bddc9af5f91702 /integer.cpp
parent5631da3697ea7a8c926df4d2a71dcc62d2effff7 (diff)
downloadcryptopp-git-c4e0942a68a3242ff9d9c4e9a0da26a06b57f201.tar.gz
Add CRYPTOPP_TABLE, remove CRYPTOPP_SECTION
Diffstat (limited to 'integer.cpp')
-rw-r--r--integer.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/integer.cpp b/integer.cpp
index 16112575..833bb3cd 100644
--- a/integer.cpp
+++ b/integer.cpp
@@ -1437,7 +1437,11 @@ void Baseline_MultiplyTop16(word *R, const word *AA, const word *BB, word L)
#if CRYPTOPP_INTEGER_SSE2
-CRYPTOPP_ALIGN_DATA(16) static const word32 s_maskLow16[4] CRYPTOPP_SECTION_ALIGN16 = {0xffff,0xffff,0xffff,0xffff};
+CRYPTOPP_ALIGN_DATA(16)
+CRYPTOPP_TABLE
+const word32 s_maskLow16[4] = {
+ 0xffff,0xffff,0xffff,0xffff
+};
#undef Mul_Begin
#undef Mul_Acc