aboutsummaryrefslogtreecommitdiff
path: root/gprof
diff options
context:
space:
mode:
authorPer Bothner <per@bothner.com>1993-02-28 02:18:40 +0000
committerPer Bothner <per@bothner.com>1993-02-28 02:18:40 +0000
commit33023c9c9c5ad46ead9739d7ab156b5824445b42 (patch)
tree60f43cbe36fe2173fe59d74370f82f094bd5bd68 /gprof
parent14c58977130bb45307e3e4b3c0a6e9dfca065de1 (diff)
downloadfsf-binutils-gdb-33023c9c9c5ad46ead9739d7ab156b5824445b42.zip
fsf-binutils-gdb-33023c9c9c5ad46ead9739d7ab156b5824445b42.tar.gz
fsf-binutils-gdb-33023c9c9c5ad46ead9739d7ab156b5824445b42.tar.bz2
* gprof.c (funcsymbol): Invert test for aflag.
Diffstat (limited to 'gprof')
-rw-r--r--gprof/ChangeLog4
-rw-r--r--gprof/gprof.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gprof/ChangeLog b/gprof/ChangeLog
index f97aaf3..4581aed 100644
--- a/gprof/ChangeLog
+++ b/gprof/ChangeLog
@@ -1,3 +1,7 @@
+Sat Feb 27 18:17:10 1993 Per Bothner (bothner@rtl.cygnus.com)
+
+ * gprof.c (funcsymbol): Invert test for aflag.
+
Thu Feb 25 16:01:50 1993 Per Bothner (bothner@rtl.cygnus.com)
* printgprof (xmalloc, xrealloc): Cast results of malloc
diff --git a/gprof/gprof.c b/gprof/gprof.c
index 169e2ec..afb5b86 100644
--- a/gprof/gprof.c
+++ b/gprof/gprof.c
@@ -685,7 +685,7 @@ funcsymbol( symp )
if (!symp->section)
return FALSE;
- if (!aflag && (symp->flags&BSF_LOCAL)) {
+ if (aflag && (symp->flags&BSF_LOCAL)) {
#if defined(DEBUG)
fprintf (stderr, "%s(%d): %s: not a function\n", __FILE__, __LINE__, symp->name);
#endif