summaryrefslogtreecommitdiff
path: root/gcc/genattrtab.c
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>2000-04-24 06:45:30 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>2000-04-24 06:45:30 +0000
commit2f8861c031e6bcdff3e889c40681fedae74c8ca5 (patch)
tree859a386ef999b22bffbc3de551df3b39887ea470 /gcc/genattrtab.c
parentdb1ad296ee6ac6920bf414a2df6b42fe77489b47 (diff)
downloadgcc-2f8861c031e6bcdff3e889c40681fedae74c8ca5.tar.gz
* genattrtab.c (find_attr): Initialize unsigned_p, func_units_p
and blockage_p in the newly allocated attribute. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33370 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/genattrtab.c')
-rw-r--r--gcc/genattrtab.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/genattrtab.c b/gcc/genattrtab.c
index 46da58773a5..2dab1b6f5bb 100644
--- a/gcc/genattrtab.c
+++ b/gcc/genattrtab.c
@@ -5747,6 +5747,7 @@ find_attr (name, create)
attr->name = attr_string (name, strlen (name));
attr->first_value = attr->default_val = NULL;
attr->is_numeric = attr->negative_ok = attr->is_const = attr->is_special = 0;
+ attr->unsigned_p = attr->func_units_p = attr->blockage_p = 0;
attr->next = attrs[index];
attrs[index] = attr;