12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /* Definitions for C parsing and type checking.
- Copyright (C) 1987 Free Software Foundation, Inc.
- This file is part of GNU CC.
- GNU CC is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY. No author or distributor
- accepts responsibility to anyone for the consequences of using it
- or for whether it serves any particular purpose or works at all,
- unless he says so in writing. Refer to the GNU CC General Public
- License for full details.
- Everyone is granted permission to copy, modify and redistribute
- GNU CC, but only under the conditions described in the
- GNU CC General Public License. A copy of this license is
- supposed to have been given to you along with GNU CC so you
- can know your rights and responsibilities. It should be in a
- file named COPYING. Among other things, the copyright notice
- and this notice must be preserved on all copies. */
- /* Nonzero means reject anything that ANSI standard C forbids. */
- extern int pedantic;
- extern void store_init_value ();
- extern int start_function ();
- extern void finish_function ();
- extern void store_parm_decls ();
- extern tree build_switch_stmt();
- extern void finish_switch_stmt ();
- extern void pushcase ();
- /* in typecheck.c */
- extern tree build_component_ref(), build_conditional_expr(), build_compound_expr();
- extern tree build_unary_op(), build_binary_op(), build_function_call();
- extern tree build_binary_op_nodefault ();
- extern tree build_indirect_ref(), build_array_ref(), build_c_cast();
- extern tree build_modify_expr();
- extern tree duplicate_reference ();
- extern tree c_sizeof ();
- /* in decl.c */
- extern tree build_bind_stmt ();
- extern tree build_label ();
- extern void pushlevel(), poplevel(), pushgoto();
- extern tree groktypename(), lookup_name();
- extern tree start_decl();
- extern void finish_decl();
- extern tree grokfield(), build_struct();
- extern tree start_enum(), finish_enum(), xref_enum();
- extern tree build_enumerator();
- extern tree implicitly_declare(), getdecls(), gettags ();
- extern tree build_return_stmt ();
- extern tree build_decl ();
- extern tree resolve_tags ();
- extern tree double_type_node, long_double_type_node, float_type_node;
- extern tree char_type_node, unsigned_char_type_node;
- extern tree short_integer_type_node, short_unsigned_type_node;
- extern tree long_integer_type_node, long_unsigned_type_node;
- extern tree unsigned_type_node;
- extern tree string_type_node, char_array_type_node;
- extern int current_function_returns_value;
- extern void yyerror();
- extern int lineno;
- extern tree ridpointers[];
- /* Points to the LET_STMT node
- whose contents are being processing */
- extern tree current_block;
- /* Points to the FUNCTION_DECL of the function whose body we are reading. */
- extern tree current_function_decl;
- /* Points to the CASE_STMT node of the innermost switch statement in
- * progress. */
- extern tree current_switch_stmt;
|