Commit 605fba2b by Jeffrey A Law Committed by Jeff Law

genattrtab.c (find_attr): Initialize unsigned_p, func_units_p and blockage_p in…

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
parent 6dfbb909
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
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment