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>
Sat, 4 Apr 2015 15:06:35 +0000 (17:06 +0200)
commit04958e84d8079fa57a782db70f003c38b5b156fd
treee879bc3162c44b2c93dd3591159bc25eac919203
parentc25dea53e9db2b4956c315f85dae3f1c2854fd2b
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>
Configure