2778b98d90
* system.h: Include libiberty.h. * c-aux-info.c: Remove prototypes for concat/concat3. Change function `concat' from fixed parameters to variable parameters, as is done in libiberty. All callers of concat/concat3 changed to use the new `concat' with variable args. * cccp.c: Remove things made redundant by libiberty.h and/or conform to libiberty standards. * cexp.y: Likewise. * collect2.c: Likewise. * config/1750a/1750a.h: Likewise. * cppalloc.c: Likewise. * cppexp.c: Likewise. * cppfiles.c: Likewise. * cpphash.c: Likewise. * cpplib.c: Likewise. * dyn-string.c: Likewise. * fix-header.c: Likewise. * gcc.c: Likewise. * gcov.c: Likewise. * genattr.c: Likewise. * genattrtab.c: Likewise. * gencheck.c: Likewise. * gencodes.c: Likewise. * genconfig.c: Likewise. * genemit.c: Likewise. * genextract.c: Likewise. * genflags.c: Likewise. * gengenrtl.c: Likewise. * genopinit.c: Likewise. * genoutput.c: Likewise. * genpeep.c: Likewise. * genrecog.c: Likewise. * getpwd.c: Likewise. * halfpic.c: Likewise. * hash.c: Likewise. * mips-tdump.c: Likewise. Wrap malloc/realloc/calloc prototypes in NEED_DECLARATION_* macros. * mips-tfile.c: Remove things made redundant by libiberty.h and/or conform to libiberty standards. (fatal): Fix const-ification of variable `format' in !ANSI_PROTOTYPES case. * prefix.c: Remove things made redundant by libiberty.h and/or conform to libiberty standards. * print-rtl.c: Rename variable `spaces' to `xspaces' to avoid conflicting with function `spaces' from libiberty. * profile.c: Remove things made redundant by libiberty.h and/or conform to libiberty standards. * protoize.c: Likewise. * rtl.h: Likewise. * scan.h: Likewise. * tlink.c: Likewise. * toplev.c: Likewise. * toplev.h: Likewise. * tree.h: Likewise. From-SVN: r23931
75 lines
2.9 KiB
C
75 lines
2.9 KiB
C
/* toplev.h - Various declarations for functions found in toplev.c
|
|
Copyright (C) 1998 Free Software Foundation, Inc.
|
|
*/
|
|
|
|
#ifndef __GCC_TOPLEV_H__
|
|
#define __GCC_TOPLEV_H__
|
|
|
|
#ifdef ANSI_PROTOTYPES
|
|
union tree_node;
|
|
struct rtx_def;
|
|
#endif
|
|
|
|
extern int count_error PROTO ((int));
|
|
extern void strip_off_ending PROTO ((char *, int));
|
|
extern void print_time PROTO ((char *, int));
|
|
extern void debug_start_source_file PROTO ((char *));
|
|
extern void debug_end_source_file PROTO ((unsigned));
|
|
extern void debug_define PROTO ((unsigned, char *));
|
|
extern void debug_undef PROTO ((unsigned, char *));
|
|
extern void fatal PVPROTO ((char *, ...))
|
|
ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN;
|
|
extern void fatal_io_error PROTO ((char *)) ATTRIBUTE_NORETURN;
|
|
extern void pfatal_with_name PROTO ((char *)) ATTRIBUTE_NORETURN;
|
|
extern void fatal_insn_not_found PROTO ((struct rtx_def *))
|
|
ATTRIBUTE_NORETURN;
|
|
extern void fatal_insn PROTO ((char *, struct rtx_def *))
|
|
ATTRIBUTE_NORETURN;
|
|
extern void warning PVPROTO ((char *, ...))
|
|
ATTRIBUTE_PRINTF_1;
|
|
extern void error PVPROTO ((char *, ...))
|
|
ATTRIBUTE_PRINTF_1;
|
|
extern void pedwarn PVPROTO ((char *, ...))
|
|
ATTRIBUTE_PRINTF_1;
|
|
extern void pedwarn_with_file_and_line PVPROTO ((char *, int, char *, ...))
|
|
ATTRIBUTE_PRINTF_3;
|
|
extern void warning_with_file_and_line PVPROTO ((char *, int, char *, ...))
|
|
ATTRIBUTE_PRINTF_3;
|
|
extern void error_with_file_and_line PVPROTO ((char *, int, char *, ...))
|
|
ATTRIBUTE_PRINTF_3;
|
|
extern void sorry PVPROTO ((char *s, ...))
|
|
ATTRIBUTE_PRINTF_1;
|
|
extern void really_sorry PVPROTO((char *s, ...))
|
|
ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN;
|
|
extern void default_print_error_function PROTO ((char *));
|
|
extern void report_error_function PROTO ((char *));
|
|
|
|
extern void rest_of_decl_compilation PROTO ((union tree_node *, char *, int, int));
|
|
extern void rest_of_type_compilation PROTO ((union tree_node *, int));
|
|
extern void rest_of_compilation PROTO ((union tree_node *));
|
|
extern void pedwarn_with_decl PVPROTO ((union tree_node *, char *, ...));
|
|
extern void warning_with_decl PVPROTO ((union tree_node *, char *, ...));
|
|
extern void error_with_decl PVPROTO ((union tree_node *, char *, ...));
|
|
extern void announce_function PROTO ((union tree_node *));
|
|
|
|
extern void error_for_asm PVPROTO((struct rtx_def *, char *, ...))
|
|
ATTRIBUTE_PRINTF_2;
|
|
extern void warning_for_asm PVPROTO((struct rtx_def *, char *, ...))
|
|
ATTRIBUTE_PRINTF_2;
|
|
#ifdef _JBLEN
|
|
extern void set_float_handler PROTO((jmp_buf));
|
|
extern int push_float_handler PROTO((jmp_buf, jmp_buf));
|
|
extern void pop_float_handler PROTO((int, jmp_buf));
|
|
#endif
|
|
|
|
#ifdef BUFSIZ
|
|
extern void output_quoted_string PROTO ((FILE *, char *));
|
|
extern void output_file_directive PROTO ((FILE *, char *));
|
|
#endif
|
|
|
|
extern void fancy_abort PROTO ((void)) ATTRIBUTE_NORETURN;
|
|
extern void do_abort PROTO ((void)) ATTRIBUTE_NORETURN;
|
|
extern void botch PROTO ((char *)) ATTRIBUTE_NORETURN;
|
|
|
|
#endif /* __GCC_TOPLEV_H */
|