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/Makefile.in | |
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/Makefile.in')
-rw-r--r-- | gcc/ch/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ch/Makefile.in b/gcc/ch/Makefile.in index 6147470..0d9fd77 100644 --- a/gcc/ch/Makefile.in +++ b/gcc/ch/Makefile.in @@ -312,8 +312,8 @@ tasking.o : tasking.c $(CONFIG_H) $(CHILL_TREE_H) $(RTL_H) \ tree.o : tree.c $(CONFIG_H) $(CHILL_TREE_H) $(srcdir)/../system.h \ $(srcdir)/../toplev.h typeck.o : typeck.c $(CONFIG_H) $(CHILL_TREE_H) ../insn-codes.h \ - $(srcdir)/../expr.h $(srcdir)/../flags.h lex.h $(srcdir)/../system.h \ - $(srcdir)/../toplev.h + $(srcdir)/../expr.h ../insn-codes.h $(srcdir)/../flags.h lex.h \ + $(srcdir)/../system.h $(srcdir)/../toplev.h ch-version.o : ch-version.c ch-version.c : Makefile echo 'char *gnuchill_version = "$(GNUCHILL_VERSION)";' > $@ |