Re: [PATCH 2/7] alpha: Eliminate compiler warning from memset macro

2013-07-17 Thread Matt Turner
On Tue, Jul 16, 2013 at 10:04 AM, Richard Henderson wrote: > Compiling with GCC 4.8 yields several instances of > > crypto/vmac.c: In function ‘vmac_final’: > crypto/vmac.c:616:9: warning: value computed is not used [-Wunused-value] > memset(, 0, sizeof(vmac_t)); > ^ >

Re: [PATCH 2/7] alpha: Eliminate compiler warning from memset macro

2013-07-17 Thread Matt Turner
On Tue, Jul 16, 2013 at 10:04 AM, Richard Henderson r...@twiddle.net wrote: Compiling with GCC 4.8 yields several instances of crypto/vmac.c: In function ‘vmac_final’: crypto/vmac.c:616:9: warning: value computed is not used [-Wunused-value] memset(mac, 0, sizeof(vmac_t)); ^

[PATCH 2/7] alpha: Eliminate compiler warning from memset macro

2013-07-16 Thread Richard Henderson
Compiling with GCC 4.8 yields several instances of crypto/vmac.c: In function ‘vmac_final’: crypto/vmac.c:616:9: warning: value computed is not used [-Wunused-value] memset(, 0, sizeof(vmac_t)); ^ arch/alpha/include/asm/string.h:31:25: note: in definition of macro ‘memset’ ?

[PATCH 2/7] alpha: Eliminate compiler warning from memset macro

2013-07-16 Thread Richard Henderson
Compiling with GCC 4.8 yields several instances of crypto/vmac.c: In function ‘vmac_final’: crypto/vmac.c:616:9: warning: value computed is not used [-Wunused-value] memset(mac, 0, sizeof(vmac_t)); ^ arch/alpha/include/asm/string.h:31:25: note: in definition of macro ‘memset’ ?