Commit 1d11bf18 by Richard Henderson Committed by Richard Henderson

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
parent 2a1c19ed
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
......
......@@ -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;
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment