aboutsummaryrefslogtreecommitdiff
path: root/gcc/ch/inout.c
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1999-01-19 22:32:39 +0000
committerJeffrey A Law <law@cygnus.com>1999-01-19 22:32:39 +0000
commit47fd797efcf9aa86d969243b25226ec83a9e29e6 (patch)
treebd8b09b788f5dd8750d47d91f6e4ecb2f15e73da /gcc/ch/inout.c
parent72e4d6ade20e189567c33e322019817aa3dae161 (diff)
* Makefile.in (typeck.o): Depend on insn-codes.h.
* actions.c (chill_handle_multi_case_label): Initialize "expr". * decl.c (poplevel): Initialize "block_previously_created". * expr.c (chill_expand_expr): Initialize "size0" and "size1". (fold_set_expr): Initialize "buffer1". * inout.c (process_io_list): Initialize "to_assign". (check_exprlist): Initialize "result". * parse.c (expand_expr): Declare. (parse_multi_dimension_case_action): Initialize "end_case_label". * tasking.c (build_start_process): Initialize "struct_type_node". * typeck.c (apply_chill_field_layout): Initialize "word". (type_for_mode); Unconditionally cast RHS & LHS to ints to shut up signed/unsigned comparison warning. Kill remaining chill warnings. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@24775 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ch/inout.c')
-rw-r--r--gcc/ch/inout.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ch/inout.c b/gcc/ch/inout.c
index 4cd0827bac6..bac22b41250 100644
--- a/gcc/ch/inout.c
+++ b/gcc/ch/inout.c
@@ -1,5 +1,5 @@
/* Implement I/O-related actions for CHILL.
- Copyright (C) 1992, 93, 1994, 1998 Free Software Foundation, Inc.
+ Copyright (C) 1992, 93, 1994, 1998, 1999 Free Software Foundation, Inc.
This file is part of GNU CC.
@@ -3314,7 +3314,7 @@ process_io_list (exprlist, iolist_addr, iolist_length, iolist_rtx, do_read,
}
else if (TREE_CODE (item_type) == BOOLEAN_TYPE)
{
- tree to_assign;
+ tree to_assign = NULL_TREE;
if (do_read && readonly)
{
@@ -3834,7 +3834,7 @@ check_exprlist (code, exprlist, argnum, repetition)
int argnum;
unsigned long repetition;
{
- tree expr, type, result;
+ tree expr, type, result = NULL_TREE;
while (repetition--)
{