diff options
author | Kaveh R. Ghazi <ghazi@tragg.rutgers.edu> | 1997-12-20 11:31:54 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-12-20 04:31:54 -0700 |
commit | 1d300e19b61d11e3a2321a098b7949f6c2058be2 (patch) | |
tree | fb640fe4c8c99759602e3a82e0ed835789f267eb /gcc/genemit.c | |
parent | afba61d1421cd6bc16d20fb4e5d8a10bf48a0b79 (diff) | |
download | gcc-1d300e19b61d11e3a2321a098b7949f6c2058be2.zip gcc-1d300e19b61d11e3a2321a098b7949f6c2058be2.tar.gz gcc-1d300e19b61d11e3a2321a098b7949f6c2058be2.tar.bz2 |
bitmap.c (bitmap_clear): Ensure `inline' is at the beginning of the declaration.
* bitmap.c (bitmap_clear): Ensure `inline' is at the beginning
of the declaration.
* c-decl.c (finish_decl): Use parentheses around && within ||.
* rtl.c: Include stdlib.h.
(read_skip_spaces): Add parentheses around assignments used as
truth values.
(read_rtx): Initialize list_rtx.
* cppexp.c (parse_number): Use || when operands are truth values.
* alias.c (find_base_value): Add default case.
(memrefs_conflict): Likewise.
* combine.c (sets_function_arg_p): Likewise.
* genemit.c (gen_exp): Likewise.
* local-alloc.c (contains_replace_regs): Likewise.
* rtlanal.c (jmp_uses_reg_or_mem): Likewise.
* fold-const.c (fold_convert): Use "&&" for truth values.
(fold): Add default case.
* sdbout.c (sdbout_field_types): Fix typo in declaration.
(sdbout_one_type): Add default case.
* alpha.c (alpha_sa_mask): Prototype only if OPEN_VMS.
(some_operand): Add default case.
(input_operand): Likewise.
(signed_comparison_operator): Likewise.
(divmod_operator): Likewise.
(alpha_set_memflags_1): Likewise.
* reload1.c (reload_cse_simplify_operands): Ensure function
always returns a value.
* scan-decls.c (scan_decls): Likewise.
* c-lex.c (skip_white_space): Fix typo in declaraion.
* c-typeck.c (comp_target_types): Add parentheses around assignment
used as truth value.
(print_spelling): Likewise.
(constructor_implicit, constructor_result): Remove unused variables.
* collect2.c (scan_library): Protect prototype with
#ifdef SCAN_LIBRARIES.
* emit-rtl.c (find_line_note): Fix typo in declaration.
* final.c (asm_insn_count): Protect prototype with
#ifdef HAVE_ATTR_length.
* flow.c (find_auto_inc): Protect prototype with #ifdef AUTO_INC_DEC.
(try_pre_increment_1, try_pre_increment): Likewise.
* regclass.c (auto_inc_dec_reg_p): Protect prototype with
#ifdef FORBIDDEN_INC_DEC_CLASSES. Make return type explicit.
* gcov-io.h (__store_long, __write_long, __read_long): Fix
unsigned/signed comparisons.
* gcov.c (read_files): Remove unused "first_type" variable.
(scan _for_source_files): Initialize s_ptr.
(function_summary): Eliminate "%lf" formatting, use %ld for
longs.
(output_data): Initialize branch_probs and last_line_num.
Eliminate "%lf" formatting, use "%ld" for longs.
Co-Authored-By: Jeffrey A Law <law@cygnus.com>
From-SVN: r17158
Diffstat (limited to 'gcc/genemit.c')
-rw-r--r-- | gcc/genemit.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/genemit.c b/gcc/genemit.c index e80e4c7..4b84852 100644 --- a/gcc/genemit.c +++ b/gcc/genemit.c @@ -1,5 +1,5 @@ /* Generate code from machine description to emit insns as rtl. - Copyright (C) 1987, 1988, 1991, 1994, 1995 Free Software Foundation, Inc. + Copyright (C) 1987, 88, 91, 94, 95, 1997 Free Software Foundation, Inc. This file is part of GNU CC. @@ -225,6 +225,9 @@ gen_exp (x) /* These shouldn't be written in MD files. Instead, the appropriate routines in varasm.c should be called. */ abort (); + + default: + break; } printf ("gen_rtx ("); @@ -743,9 +746,11 @@ main (argc, argv) from the machine description file `md'. */\n\n"); printf ("#include \"config.h\"\n"); + printf ("#include <stdio.h>\n"); printf ("#include \"rtl.h\"\n"); printf ("#include \"expr.h\"\n"); printf ("#include \"real.h\"\n"); + printf ("#include \"flags.h\"\n"); printf ("#include \"output.h\"\n"); printf ("#include \"insn-config.h\"\n\n"); printf ("#include \"insn-flags.h\"\n\n"); |