aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Ponomarenko <aponomarenko@rosalab.ru>2015-04-12 19:14:06 +0300
committerAndrey Ponomarenko <aponomarenko@rosalab.ru>2015-04-12 19:14:06 +0300
commitedb52960e582e7848a2f01e40cea3b18e75c6125 (patch)
tree620841242e2d1fd5f4a3f3176c17f76043d3b5a2
parent5d886e3cb2269b158ebda6cbd4ffd49e2ac9d5ee (diff)
downloadabi-dumper-edb52960e582e7848a2f01e40cea3b18e75c6125.tar.gz
Fix for SUSE review bot: missed names and calling conventions of parameters.
-rw-r--r--INSTALL4
-rw-r--r--README2
-rwxr-xr-xabi-dumper.pl6
3 files changed, 6 insertions, 6 deletions
diff --git a/INSTALL b/INSTALL
index ec6c09e..9a7bddf 100644
--- a/INSTALL
+++ b/INSTALL
@@ -6,8 +6,8 @@ All rights reserved.
RELEASE INFORMATION
Project: ABI Dumper
-Version: 0.99.7
-Date: 2013-10-25
+Version: 0.99.8.1
+Date: 2015-04-12
This file explains how to install and setup environment
diff --git a/README b/README
index 8be2ee2..c890ed2 100644
--- a/README
+++ b/README
@@ -8,8 +8,8 @@ INSTALL:
sudo perl Makefile.pl -install --prefix=/usr
REQUIRES:
- Elfutils (eu-readelf)
Perl 5 (5.8 or newer)
+ Elfutils (eu-readelf)
Vtable Dumper (1.0 or newer, https://github.com/lvc/vtable-dumper)
USAGE:
diff --git a/abi-dumper.pl b/abi-dumper.pl
index 651c96f..d78b871 100755
--- a/abi-dumper.pl
+++ b/abi-dumper.pl
@@ -1,6 +1,6 @@
#!/usr/bin/perl
###########################################################################
-# ABI Dumper 0.99.7
+# ABI Dumper 0.99.8.1
# Dump ABI of an ELF object containing DWARF debug info
#
# Copyright (C) 2012-2015 Andrey Ponomarenko's ABI Laboratory
@@ -43,7 +43,7 @@ use Cwd qw(abs_path cwd realpath);
use Storable qw(dclone);
use Data::Dumper;
-my $TOOL_VERSION = "0.99.7";
+my $TOOL_VERSION = "0.99.8.1";
my $ABI_DUMP_VERSION = "3.2";
my $ORIG_DIR = cwd();
my $TMP_DIR = tempdir(CLEANUP=>1);
@@ -3180,7 +3180,7 @@ sub getSymbolInfo($)
}
if(defined $Checked_Spec{$MnglName}
- or not $DWARF_Info{$ID}{"specification"})
+ or (not $DWARF_Info{$ID}{"specification"} and not $DWARF_Info{$ID}{"low_pc"}))
{
if(not defined $SpecElem{$ID}
and not defined $OrigElem{$ID}) {