sha2: Suppress -Wcast-align warning from Clang

The code does contain a cast that increases alignment but only for
pointers into structures known to be sufficiently aligned.
This commit is contained in:
Brad King 2011-11-17 11:12:00 -05:00
parent 24b1feb5ca
commit 0a6705cbda
1 changed files with 3 additions and 0 deletions

View File

@ -106,6 +106,9 @@ typedef cm_sha2_uint64_t sha_word64; /* Exactly 8 bytes */
#if defined(__BORLANDC__)
# pragma warn -8004 /* variable assigned value that is never used */
#endif
#if defined(__clang__)
# pragma clang diagnostic ignored "-Wcast-align"
#endif
/*** ENDIAN REVERSAL MACROS *******************************************/
#if BYTE_ORDER == LITTLE_ENDIAN