aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Henderson <rth@cygnus.com>2000-05-12 13:32:30 -0700
committerRichard Henderson <rth@gcc.gnu.org>2000-05-12 13:32:30 -0700
commit1d11bf189ecde134f3a50214185ebe23c21fcebd (patch)
tree9dcee675f5fae532e621bd3fa70d4b14758adf5f /gcc
parent2a1c19eda81b317f763b46d293f81864a3615e05 (diff)
downloadgcc-1d11bf189ecde134f3a50214185ebe23c21fcebd.zip
gcc-1d11bf189ecde134f3a50214185ebe23c21fcebd.tar.gz
gcc-1d11bf189ecde134f3a50214185ebe23c21fcebd.tar.bz2
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
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/alpha/alpha.c6
2 files changed, 8 insertions, 3 deletions
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 <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
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;
};