aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>2000-04-24 06:45:30 +0000
committerJeff Law <law@gcc.gnu.org>2000-04-24 00:45:30 -0600
commit605fba2bcad5eb0dc74bd96b34f66153a75090e0 (patch)
tree859a386ef999b22bffbc3de551df3b39887ea470
parent6dfbb909771e15460a5f8f6f246ad75ab993442d (diff)
downloadgcc-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
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/genattrtab.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 8a9d54c..1b5b42f 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 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;