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 | |
| parent | db1ad296ee6ac6920bf414a2df6b42fe77489b47 (diff) | |
| download | ppe42-gcc-2f8861c031e6bcdff3e889c40681fedae74c8ca5.tar.gz ppe42-gcc-2f8861c031e6bcdff3e889c40681fedae74c8ca5.zip | |
* 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
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/genattrtab.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8a9d54cb043..1b5b42fb3ec 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Mon Apr 24 00:21:36 2000 Jeffrey A Law (law@cygnus.com) + + * genattrtab.c (find_attr): Initialize unsigned_p, func_units_p + and blockage_p in the newly allocated attribute. + Sun Apr 23 20:16:49 2000 Alexandre Oliva <aoliva@cygnus.com> * config/mn10300/mn10300.md (addsi): `inc4' on address 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; |

