aboutsummaryrefslogtreecommitdiff
path: root/gprof
diff options
context:
space:
mode:
Diffstat (limited to 'gprof')
-rw-r--r--gprof/ChangeLog6
-rw-r--r--gprof/gprof.c3
2 files changed, 8 insertions, 1 deletions
diff --git a/gprof/ChangeLog b/gprof/ChangeLog
index a67de9e..39a6005 100644
--- a/gprof/ChangeLog
+++ b/gprof/ChangeLog
@@ -1,3 +1,9 @@
+Tue Aug 30 11:12:13 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
+
+ * gprof.c (funcsymbol): Ignore ___gnu_compiled as well as
+ __gnu_compiled, for the benefit of systems which add a leading
+ underscore.
+
Wed Aug 24 12:49:13 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
* configure.in: Change i386-*-* to i[345]86-*-*.
diff --git a/gprof/gprof.c b/gprof/gprof.c
index 301da69..15eb7fd 100644
--- a/gprof/gprof.c
+++ b/gprof/gprof.c
@@ -777,7 +777,8 @@ funcsymbol( symp )
/* Gcc may add special symbols to help gdb figure out the file
language. We want to ignore these, since sometimes they
mask the real function. (dj@ctron) */
- || !strncmp (symp->name, "__gnu_compiled", 14))
+ || !strncmp (symp->name, "__gnu_compiled", 14)
+ || !strncmp (symp->name, "___gnu_compiled", 15))
return FALSE;
return TRUE;