|
From: <sv...@va...> - 2006-09-14 20:10:22
|
Author: sewardj
Date: 2006-09-14 21:10:19 +0100 (Thu, 14 Sep 2006)
New Revision: 6067
Log:
Merge r6064 (callgrind_annotate: fix warnings with "--collect-jumps=3Dyes=
")
Modified:
branches/VALGRIND_3_2_BRANCH/callgrind/callgrind_annotate.in
Modified: branches/VALGRIND_3_2_BRANCH/callgrind/callgrind_annotate.in
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- branches/VALGRIND_3_2_BRANCH/callgrind/callgrind_annotate.in 2006-09-=
14 20:07:46 UTC (rev 6066)
+++ branches/VALGRIND_3_2_BRANCH/callgrind/callgrind_annotate.in 2006-09-=
14 20:10:19 UTC (rev 6067)
@@ -634,6 +634,16 @@
} elsif (s/^(jump|jcnd)=3D//) {
#ignore jump information
=20
+ } elsif (s/^jfi=3D(.*)$//) {
+ # side effect needed: possibly add compression mapping=20
+ uncompressed_name("fl",$1);
+ # ignore jump information=09
+
+ } elsif (s/^jfn=3D(.*)$//) {
+ # side effect needed: possibly add compression mapping
+ uncompressed_name("fn",$1);
+ # ignore jump information
+
} elsif (s/^totals:\s+//) {
#ignore
=20
|