In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/4613f3c1178bbe529e2e4ca8e36d9da6fd04980c?hp=9aa972151378d3fdced94dbae99981c495d749f5>

- Log -----------------------------------------------------------------
commit 4613f3c1178bbe529e2e4ca8e36d9da6fd04980c
Author: Jarkko Hietaniemi <[email protected]>
Date:   Tue Jul 22 17:22:57 2014 -0400

    _LIB_VERSION scan was trying leading address twice.
    
    Important with PERL_GLOBAL_STRUCT_PRIVATE.
-----------------------------------------------------------------------

Summary of changes:
 t/porting/libperl.t | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/t/porting/libperl.t b/t/porting/libperl.t
index d7276fe..7bd2198 100644
--- a/t/porting/libperl.t
+++ b/t/porting/libperl.t
@@ -206,7 +206,7 @@ sub nm_parse_gnu {
                 # Bb: uninitialized data (bss)
                 # Ss: uninitialized data "for small objects"
                 $symbols->{data}{bss}{$1}{$symbols->{o}}++;
-            } elsif (/^0{16} D _LIB_VERSION$/) {
+            } elsif (/^D _LIB_VERSION$/) {
                 # Skip the _LIB_VERSION (not ours, probably libm)
             } elsif (/^[DdGg] (\w+)$/) {
                 # Dd: initialized data

--
Perl5 Master Repository

Reply via email to