df928c8f28
inside ifdef where they are used. * core.c (core_sym_class): Parenthesize && within ||. * symtab.c (symtab_finalize): Correct parenthesization. * cg_print.h (cg_print_file_ordering): Declare. (cg_print_function_ordering): Declare. * __bb_exit_func.c (__bb_exit_func): Replace bcopy with memcpy. * cg_arcs.c (arc_add): Likewise. * cg_print.c (cg_print_function_ordering): Likewise.
15 lines
360 B
C
15 lines
360 B
C
#ifndef cg_print_h
|
|
#define cg_print_h
|
|
|
|
#include "gprof.h"
|
|
#include "symtab.h"
|
|
|
|
extern double print_time; /* total of time being printed */
|
|
|
|
extern void cg_print PARAMS ((Sym ** cg));
|
|
extern void cg_print_index PARAMS ((void));
|
|
extern void cg_print_file_ordering PARAMS ((void));
|
|
extern void cg_print_function_ordering PARAMS ((void));
|
|
|
|
#endif /* cg_print_h */
|