Commit db9e5545 by Richard Stallman

(fake_f_rep): Clear all of u, initially.

Make the ints in u unsigned.

(f_define): Use ordinary constants for long double
if it's same width as double.
Make __convert_long_double_i unsigned.
(convert_for_assignment): Typo in last change.

From-SVN: r3567
parent 9b7267b8
...@@ -4047,7 +4047,7 @@ convert_for_assignment (type, rhs, errtype, fundecl, funname, parmnum) ...@@ -4047,7 +4047,7 @@ convert_for_assignment (type, rhs, errtype, fundecl, funname, parmnum)
(coder == INTEGER_TYPE || coder == REAL_TYPE || coder == ENUMERAL_TYPE)) (coder == INTEGER_TYPE || coder == REAL_TYPE || coder == ENUMERAL_TYPE))
return convert_and_check (type, rhs); return convert_and_check (type, rhs);
/* Conversion to a union from its member types. */ /* Conversion to a union from its member types. */
else if (codel = UNION_TYPE) else if (codel == UNION_TYPE)
{ {
tree memb_types; tree memb_types;
for (memb_types = TYPE_FIELDS (type); memb_types; for (memb_types = TYPE_FIELDS (type); memb_types;
......
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