diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-24 06:45:30 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-24 06:45:30 +0000 |
commit | 2f8861c031e6bcdff3e889c40681fedae74c8ca5 (patch) | |
tree | 859a386ef999b22bffbc3de551df3b39887ea470 /gcc/genattrtab.c | |
parent | db1ad296ee6ac6920bf414a2df6b42fe77489b47 (diff) | |
download | gcc-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.c | 1 |
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; |