On 08/05/2011 10:54 AM, Steve Ellcey wrote: > - unsigned char checksum[16]; > struct md5_ctx ctx; > + unsigned char checksum[16];
How about
struct md5_data
{
struct md5_ctx ctx;
unsigned char checksum[16];
};
struct md5_data md5;
with the structure definition somewhere interesting?
If no where else, just dwarf2out.c file scope.
r~
