Appease clang -Wgnu-statement-expression
authorRichard Levitte <levitte@openssl.org>
Sat, 4 Apr 2015 14:33:20 +0000 (16:33 +0200)
committerRichard Levitte <levitte@openssl.org>
Wed, 8 Apr 2015 15:59:41 +0000 (17:59 +0200)
commita4ba7163338f30675d7c58ed274d127ad7ac04e9
tree5e4c7ab7a733919b35cb9a5b21c88b0ebc9658cd
parentd21cbd7d5e8be3f21ffec0491b7627d02fad57ea
Appease clang -Wgnu-statement-expression

We use GNU statement expressions in crypto/md32_common.h, surrounded
by checks that GNU C is indeed used to compile.  It seems that clang,
at least on Linux, pretends to be GNU C, therefore finds the statement
expressions and then warns about them.

The solution is to have clang be quiet about it.

Reviewed-by: Rich Salz <rsalz@openssl.org>
(cherry picked from commit 04958e84d8079fa57a782db70f003c38b5b156fd)
Configure