OSDN Git Service

* genattrtab.c (find_attr): Initialize unsigned_p, func_units_p
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 24 Apr 2000 06:45:30 +0000 (06:45 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 24 Apr 2000 06:45:30 +0000 (06:45 +0000)
        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

gcc/ChangeLog
gcc/genattrtab.c

index 8a9d54c..1b5b42f 100644 (file)
@@ -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
index 46da587..2dab1b6 100644 (file)
@@ -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;