From: Richard Henderson Date: Fri, 12 May 2000 20:32:30 +0000 (-0700) Subject: alpha.c (struct shadow_summary): Define bitfields as type unsigned int. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1d11bf189ecde134f3a50214185ebe23c21fcebd;p=platform%2Fupstream%2Fgcc.git alpha.c (struct shadow_summary): Define bitfields as type unsigned int. * config/alpha/alpha.c (struct shadow_summary): Define bitfields as type unsigned int. From-SVN: r33884 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9bcbd19..9eae7dd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-05-12 Richard Henderson + + * config/alpha/alpha.c (struct shadow_summary): Define + bitfields as type unsigned int. + Sat May 13 00:09:59 2000 Denis Chertykov * config/avr/t-avr: Added definition of FLOAT while generates diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index 89a08cf..f7030d1 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -4863,9 +4863,9 @@ alpha_output_lineno (stream, line) struct shadow_summary { struct { - unsigned long i : 31; /* Mask of int regs */ - unsigned long fp : 31; /* Mask of fp regs */ - unsigned long mem : 1; /* mem == imem | fpmem */ + unsigned int i : 31; /* Mask of int regs */ + unsigned int fp : 31; /* Mask of fp regs */ + unsigned int mem : 1; /* mem == imem | fpmem */ } used, defd; };