diff options
author | Richard Stallman <rms@gnu.org> | 1993-02-28 04:18:38 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-02-28 04:18:38 +0000 |
commit | db9e5545df5d21e02c20fe6d09c2ac48c01796df (patch) | |
tree | 7ed643583df6be05ea5791ce88f699c51bd854f1 /gcc | |
parent | 9b7267b844877f45b6a834bed50d9c25635c8271 (diff) | |
download | gcc-db9e5545df5d21e02c20fe6d09c2ac48c01796df.zip gcc-db9e5545df5d21e02c20fe6d09c2ac48c01796df.tar.gz gcc-db9e5545df5d21e02c20fe6d09c2ac48c01796df.tar.bz2 |
(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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/c-typeck.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index 434c9d5..3897350 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; |