diff options
author | Jeffrey A Law <law@cygnus.com> | 1999-01-19 22:32:39 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-01-19 15:32:39 -0700 |
commit | ed730bcf610706e6b4760009dbe3440c7826b763 (patch) | |
tree | bd8b09b788f5dd8750d47d91f6e4ecb2f15e73da /gcc/ch/expr.c | |
parent | 6fbe9bd84020ce363a00acea4ad0d85766b2fb97 (diff) | |
download | gcc-ed730bcf610706e6b4760009dbe3440c7826b763.zip gcc-ed730bcf610706e6b4760009dbe3440c7826b763.tar.gz gcc-ed730bcf610706e6b4760009dbe3440c7826b763.tar.bz2 |
Makefile.in (typeck.o): Depend on insn-codes.h.
* 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.
From-SVN: r24775
Diffstat (limited to 'gcc/ch/expr.c')
-rw-r--r-- | gcc/ch/expr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ch/expr.c b/gcc/ch/expr.c index f6ccf1c..5e689a2 100644 --- a/gcc/ch/expr.c +++ b/gcc/ch/expr.c @@ -1,6 +1,6 @@ /* Convert language-specific tree expression to rtl instructions, for GNU CHILL compiler. - 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. @@ -317,7 +317,7 @@ chill_expand_expr (exp, target, tmode, modifier) { tree exp0 = TREE_OPERAND (exp, 0); tree exp1 = TREE_OPERAND (exp, 1); - rtx size0, size1; + rtx size0 = NULL_RTX, size1 = NULL_RTX; rtx targetx; if (TREE_CODE (exp1) == UNDEFINED_EXPR) @@ -3030,7 +3030,7 @@ fold_set_expr (code, op0, op1) tree op0, op1; { tree temp; - char *buffer0, *buffer1, *bufferr; + char *buffer0, *buffer1 = NULL, *bufferr; int i, size0, size1, first_unused_bit; if (! TREE_CONSTANT (op0) || TREE_CODE (op0) != CONSTRUCTOR) |