diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-04-07 23:47:11 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-04-07 23:47:11 +0000 |
commit | 12693c8153016a21d356d907085cd5ca8bac4814 (patch) | |
tree | 07927d40dcf965c978d007db17fbcebbedeca47e /gcc/c-lex.c | |
parent | 8d234bf4079e13a990b101f4bde39161d722230b (diff) | |
download | gcc-12693c8153016a21d356d907085cd5ca8bac4814.tar.gz |
* c-lex.c (is_class_name): Delete declaration.
(whitespace_cr): Make static and add prototype.
* c-lex.h (make_pointer_declarator, reinit_parse_for_function,
yylex, get_directive_line): Turn declarations into prototypes.
(position_after_whitespace, check_newline, yyerror,, is_class_name,
forget_protocol_qualifiers, remember_protocol_qualifiers): Add
prototypes.
* genattr.c (extend_range, write_upcase, gen_attr, write_units): Add
prototypes.
* gencodes.c (gen_insn): Add prototype.
* genconfig.c (walk_insn, gen_insn, gen_expand, gen_split,
gen_peephole): Add prototypes.
* genflags.c (num_operands, gen_proto, gen_nonproto, gen_insn): Add
prototypes.
* gengenrtl.c (type_from_format, accessor_from_format, special_rtx,
special_format, find_formats, gendecl, genmacro, gendef, genlegend,
genheader, gencode): Add prototypes.
* genopinit.c (gen_insn): Add prototype.
* genoutput.c (output_prologue, output_epilogue, scan_operands,
process_template, validate_insn_alternatives, gen_insn, gen_peephole,
gen_expand, gen_split, n_occurrences): Add prototypes.
* genpeep.c (gen_peephole): Add prototype.
* loop.c (find_and_verify_loops, mark_loop_jump, prescan_loop,
reg_in_basic_block_p, consec_sets_invariant_p, libcall_other_reg,
labels_in_range_p, count_loop_regs_set, note_addr_stored,
loop_reg_used_before_p, scan_loop, replace_call_address,
skip_consec_insns, libcall_benefit, ignore_some_movables,
force_movables, combine_movables, rtx_equal_for_loop_p, move_movables,
strength_reduce, valid_initial_value_p, find_mem_givs, record_biv,
check_final_value, record_giv, update_giv_derive, basic_induction_var,
simplify_giv_expr, general_induction_var, consec_sets_giv,
check_dbra_loop, express_from, combine_givs_p, combine_givs,
product_cheap_p, maybe_eliminate_biv, maybe_eliminate_biv_1,
last_use_this_basic_block, record_initial, update_reg_last_use,
iteration_info, analyze_loop_iterations, insert_bct,
instrument_loop_bct, indirect_jump_in_function_p): Turn declarations
into prototypes.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19038 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-lex.c')
-rw-r--r-- | gcc/c-lex.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c index 99b21c0382f..8e9e10c8fef 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -93,8 +93,6 @@ tree lastiddecl; int doing_objc_thang; -extern tree is_class_name (); - extern int yydebug; /* File used for outputting assembler code. */ @@ -129,6 +127,7 @@ static int nextchar = -1; #ifdef HANDLE_SYSV_PRAGMA static int handle_sysv_pragma PROTO((int)); #endif /* HANDLE_SYSV_PRAGMA */ +static int whitespace_cr PROTO((int)); static int skip_white_space PROTO((int)); static char *extend_token_buffer PROTO((char *)); static int readescape PROTO((int *)); @@ -334,7 +333,7 @@ yyprint (file, yychar, yylval) /* Iff C is a carriage return, warn about it - if appropriate - and return nonzero. */ -int +static int whitespace_cr (c) int c; { |