Appease clang -Wshadow
authorRichard Levitte <levitte@openssl.org>
Sat, 4 Apr 2015 14:53:44 +0000 (16:53 +0200)
committerRichard Levitte <levitte@openssl.org>
Wed, 8 Apr 2015 15:59:41 +0000 (17:59 +0200)
commit700c0eb8d9f155e526fab1310f6b5073327bf6a7
treee70320c8946802eb87ee4704e01854f153097272
parenta4ba7163338f30675d7c58ed274d127ad7ac04e9
Appease clang -Wshadow

The macros BSWAP4 and BSWAP8 have statetemnt expressions
implementations that use local variable names that shadow variables
outside the macro call, generating warnings like this

e_aes_cbc_hmac_sha1.c:263:14: warning: declaration shadows a local variable
      [-Wshadow]
    seqnum = BSWAP8(blocks[0].q[0]);
             ^
../modes/modes_lcl.h:41:29: note: expanded from macro 'BSWAP8'
                            ^
e_aes_cbc_hmac_sha1.c:223:12: note: previous declaration is here
    size_t ret = 0;
           ^

Have clang be quiet by modifying the macro variable names slightly
(suffixing them with an underscore).

Reviewed-by: Rich Salz <rsalz@openssl.org>
(cherry picked from commit 2da2a4349c1598ad0648405fe175e7846d893c45)
crypto/modes/modes_lcl.h