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
This commit is contained in:
Richard Henderson 2000-05-12 13:32:30 -07:00 committed by Richard Henderson
parent 2a1c19eda8
commit 1d11bf189e
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2000-05-12 Richard Henderson <rth@cygnus.com>
* config/alpha/alpha.c (struct shadow_summary): Define
bitfields as type unsigned int.
Sat May 13 00:09:59 2000 Denis Chertykov <denisc@overta.ru>
* config/avr/t-avr: Added definition of FLOAT while generates

View File

@ -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;
};