aboutsummaryrefslogtreecommitdiff
path: root/gprof
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1996-03-20 23:16:35 +0000
committerIan Lance Taylor <ian@airs.com>1996-03-20 23:16:35 +0000
commit7a542ed991a38ad3ec2d926a4edf1e97a0b1ced5 (patch)
tree61e806f3792bba76e47fc7e619c6fb53643ed5c8 /gprof
parentd1f38e137a1ed266af1d9829eec05357ee3020c3 (diff)
downloadfsf-binutils-gdb-7a542ed991a38ad3ec2d926a4edf1e97a0b1ced5.zip
fsf-binutils-gdb-7a542ed991a38ad3ec2d926a4edf1e97a0b1ced5.tar.gz
fsf-binutils-gdb-7a542ed991a38ad3ec2d926a4edf1e97a0b1ced5.tar.bz2
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.
Diffstat (limited to 'gprof')
-rw-r--r--gprof/ChangeLog6
-rw-r--r--gprof/cg_print.c4
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;