aboutsummaryrefslogtreecommitdiff
path: root/gprof/gprof.c
diff options
context:
space:
mode:
Diffstat (limited to 'gprof/gprof.c')
-rw-r--r--gprof/gprof.c3
1 files changed, 2 insertions, 1 deletions
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;