diff options
author | Jeffrey A Law <law@cygnus.com> | 2000-04-24 06:45:30 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2000-04-24 00:45:30 -0600 |
commit | 605fba2bcad5eb0dc74bd96b34f66153a75090e0 (patch) | |
tree | 859a386ef999b22bffbc3de551df3b39887ea470 /gcc/genattrtab.c | |
parent | 6dfbb909771e15460a5f8f6f246ad75ab993442d (diff) | |
download | gcc-605fba2bcad5eb0dc74bd96b34f66153a75090e0.zip gcc-605fba2bcad5eb0dc74bd96b34f66153a75090e0.tar.gz gcc-605fba2bcad5eb0dc74bd96b34f66153a75090e0.tar.bz2 |
genattrtab.c (find_attr): Initialize unsigned_p, func_units_p and blockage_p in the newly allocated attribute.
* genattrtab.c (find_attr): Initialize unsigned_p, func_units_p
and blockage_p in the newly allocated attribute.
From-SVN: r33370
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 46da587..2dab1b6 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; |