Move some conditionally used variables into the block where they are used.

This allows dropping the av_unused argument from them.
This commit is contained in:
Diego Biurrun
2012-02-10 15:10:42 +01:00
parent 7331b6e718
commit 6df5c528ca
3 changed files with 4 additions and 3 deletions

View File

@@ -181,7 +181,7 @@ static void sha256_transform(uint32_t *state, const uint8_t buffer[64])
{
unsigned int i, a, b, c, d, e, f, g, h;
uint32_t block[64];
uint32_t T1, av_unused(T2);
uint32_t T1;
a = state[0];
b = state[1];
@@ -193,6 +193,7 @@ static void sha256_transform(uint32_t *state, const uint8_t buffer[64])
h = state[7];
#if CONFIG_SMALL
for (i = 0; i < 64; i++) {
uint32_t T2;
if (i < 16)
T1 = blk0(i);
else