diff options
Diffstat (limited to 'gprof')
-rw-r--r-- | gprof/ChangeLog | 6 | ||||
-rw-r--r-- | gprof/cg_print.c | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gprof/ChangeLog b/gprof/ChangeLog index 51aa373..a575dc2 100644 --- a/gprof/ChangeLog +++ b/gprof/ChangeLog @@ -1,3 +1,9 @@ +Wed Mar 20 18:15:47 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> + + * cg_print.c (cg_print_function_ordering): Fix __GNUC__ misspelled + as __GNU_C__. + (order_and_dump_functions_by_arcs): Likewise. + Tue Mar 12 12:19:50 1996 Ian Lance Taylor <ian@cygnus.com> * configure: Rebuild with autoconf 2.8. diff --git a/gprof/cg_print.c b/gprof/cg_print.c index c2f6ecb..236e01b 100644 --- a/gprof/cg_print.c +++ b/gprof/cg_print.c @@ -763,7 +763,7 @@ DEFUN_VOID (cg_print_function_ordering) { unsigned long index, used, unused, scratch_index; unsigned long unplaced_arc_count, high_arc_count, scratch_arc_count; -#ifdef __GNU_C__ +#ifdef __GNUC__ unsigned long long total_arcs, tmp_arcs_count; #else unsigned long total_arcs, tmp_arcs_count; @@ -979,7 +979,7 @@ order_and_dump_functions_by_arcs (arcs, numarcs, all, Arc **unplaced_arcs; unsigned long *unplaced_arc_count; { -#ifdef __GNU_C__ +#ifdef __GNUC__ unsigned long long tmp_arcs, total_arcs; #else unsigned long tmp_arcs, total_arcs; |