From: Ian Lance Taylor Date: Wed, 20 Mar 1996 23:16:35 +0000 (+0000) Subject: Wed Mar 20 18:15:47 1996 Andreas Schwab X-Git-Tag: gdb-4_18~9042 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7a542ed991a38ad3ec2d926a4edf1e97a0b1ced5;p=external%2Fbinutils.git Wed Mar 20 18:15:47 1996 Andreas Schwab * cg_print.c (cg_print_function_ordering): Fix __GNUC__ misspelled as __GNU_C__. (order_and_dump_functions_by_arcs): Likewise. --- 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 + + * 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 * 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;