Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 156565
b: refs/heads/master
c: 3f6e968
h: refs/heads/master
i:
  156563: eabd877
v: v3
  • Loading branch information
Steven Rostedt committed Aug 6, 2009
1 parent 3591d83 commit 1b469e7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 464e85eb0e63096bd52e4c3e2a6fb8357fb95828
refs/heads/master: 3f6e968ef4e1d8d93d8a8505461b0e50a9e97ad8
5 changes: 4 additions & 1 deletion trunk/scripts/recordmcount.pl
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,10 @@ sub update_funcs
$offset = hex $1;
} else {
# if we already have a function, and this is weak, skip it
if (!defined($ref_func) && !defined($weak{$text})) {
if (!defined($ref_func) && !defined($weak{$text}) &&
# PPC64 can have symbols that start with .L and
# gcc considers these special. Don't use them!
$text !~ /^\.L/) {
$ref_func = $text;
$offset = hex $1;
}
Expand Down

0 comments on commit 1b469e7

Please sign in to comment.