Commit 3cd33c42 authored by Andy Polyakov's avatar Andy Polyakov
Browse files

ec/ecp_nistz256_table.c: fix potential misalignment problem with Sun C.



Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent 50053969
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) /