summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2015-12-09 20:49:12 +0100
committerAndy Polyakov <appro@openssl.org>2015-12-10 20:13:28 +0100
commit3cd33c42e3460d9351d208c08bea28f57f7465ff (patch)
tree090c7fce290e40ca38ec3ceb8c2a33a8c5362b12
parent50053969e39ae055d2aca7a6a8bf39a3e20c1931 (diff)
downloadopenssl-new-3cd33c42e3460d9351d208c08bea28f57f7465ff.tar.gz
ec/ecp_nistz256_table.c: fix potential misalignment problem with Sun C.
Reviewed-by: Rich Salz <rsalz@openssl.org>
-rw-r--r--crypto/ec/ecp_nistz256_table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ec/ecp_nistz256_table.c b/crypto/ec/ecp_nistz256_table.c
index 216d024e01..2f0797db6b 100644
--- a/crypto/ec/ecp_nistz256_table.c
+++ b/crypto/ec/ecp_nistz256_table.c
@@ -17,7 +17,7 @@ __attribute((aligned(4096)))
#elif defined(_MSC_VER)
__declspec(align(4096))
#elif defined(__SUNPRO_C)
-# pragma align 4096(ecp_nistz256_precomputed)
+# pragma align 64(ecp_nistz256_precomputed)
#endif
static const BN_ULONG ecp_nistz256_precomputed[37][64 *
sizeof(P256_POINT_AFFINE) /