From db9e5545df5d21e02c20fe6d09c2ac48c01796df Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Sun, 28 Feb 1993 04:18:38 +0000 Subject: [PATCH] (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 --- gcc/c-typeck.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index 434c9d51283..38973506b02 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -4047,7 +4047,7 @@ convert_for_assignment (type, rhs, errtype, fundecl, funname, parmnum) (coder == INTEGER_TYPE || coder == REAL_TYPE || coder == ENUMERAL_TYPE)) return convert_and_check (type, rhs); /* Conversion to a union from its member types. */ - else if (codel = UNION_TYPE) + else if (codel == UNION_TYPE) { tree memb_types; for (memb_types = TYPE_FIELDS (type); memb_types; -- 2.30.2