diff options
author | Zack Weinberg <zack@wolery.cumb.org> | 2000-08-02 17:01:13 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2000-08-02 17:01:13 +0000 |
commit | 50e60bc3d7c3ab94e6f5eabaaee3eab574e0b0c3 (patch) | |
tree | 33e626ecf7d173a341ab289bdd457e7b358a8650 /gcc/f/expr.c | |
parent | 3f954fc3f38a0fd76f8107b75f0f0b5936a29fd9 (diff) | |
download | gcc-50e60bc3d7c3ab94e6f5eabaaee3eab574e0b0c3.zip gcc-50e60bc3d7c3ab94e6f5eabaaee3eab574e0b0c3.tar.gz gcc-50e60bc3d7c3ab94e6f5eabaaee3eab574e0b0c3.tar.bz2 |
c-common.h: Prototype min_precision and c_build_qualified_type here...
* c-common.h: Prototype min_precision and c_build_qualified_type here...
* c-tree.h: ... not here.
* errors.h: Prototype fancy_abort.
* emit-rtl.c (gen_lowpart_common): Move variable 'c' into
HOST_BITS_PER_WIDE_INT == 64 ifdef block.
* regrename.c (regrename_optimize): Make control flow explicit.
(replace_reg_in_block): Initialize reg_use to 0.
* i386.c (legitimate_address_p): Rename error label to
report_error to avoid namespace clash.
cp:
* cp-tree.h: Don't prototype min_precision here.
(my_friendly_assert): Cast expression to void.
* semantics.c (do_poplevel): Initialize scope_stmts.
f:
* expr.c (ffeexpr_finished_): Cast signed side of ?:
expression to bool.
java:
* class.c (build_dtable_decl): Initialize dummy.
intl:
* dcgettext.c (find_msg): Initialize act before loop.
(guess_category_value): Add dummy uses of both parameters.
* localealias.c (read_alias_file): Cast arg of strchr to char *.
From-SVN: r35427
Diffstat (limited to 'gcc/f/expr.c')
-rw-r--r-- | gcc/f/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/f/expr.c b/gcc/f/expr.c index 82b9f47..2a46a9d 100644 --- a/gcc/f/expr.c +++ b/gcc/f/expr.c @@ -13162,7 +13162,7 @@ again: /* :::::::::::::::::::: */ error = (expr == NULL) || ((ffeinfo_rank (info) != 0) ? ffe_is_pedantic () /* F77 C5. */ - : (ffeinfo_kindtype (info) != ffecom_label_kind ())) + : (bool) (ffeinfo_kindtype (info) != ffecom_label_kind ())) || (ffebld_op (expr) != FFEBLD_opSYMTER); break; |