summaryrefslogtreecommitdiffstats
path: root/gcc/config
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2000-05-12 20:32:30 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2000-05-12 20:32:30 +0000
commit495c4a7854d77246702383afa926f535c7861317 (patch)
tree9dcee675f5fae532e621bd3fa70d4b14758adf5f /gcc/config
parent735e23e5a238f469c302eb3a8580374a22a71734 (diff)
downloadppe42-gcc-495c4a7854d77246702383afa926f535c7861317.tar.gz
ppe42-gcc-495c4a7854d77246702383afa926f535c7861317.zip
* config/alpha/alpha.c (struct shadow_summary): Define
bitfields as type unsigned int. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33884 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/alpha/alpha.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c
index 89a08cfef69..f7030d1dd91 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;
};
OpenPOWER on IntegriCloud