mirror of
git://sourceware.org/git/libabigail.git
synced 2025-03-09 16:17:48 +00:00
The Git repository of the Libabigail Project
This is the last patch that should fix the issue https://sourceware.org/bugzilla/show_bug.cgi?id=17655 A pointer to void can be represented as an instance of abigail::ir::pointer_type_def which has a NULL pointed-to attribute. Unfortunately, there are various places in the code that assume that abigail::ir::pointer_type_def::get_pointed_to_type() returns a non-null value. This patch is an attempt at fixing those spots. * src/abg-comparison.cc (pointer_diff::report): Handle the case of pointer to void. * src/abg-dwarf-reader.cc (build_pointer_type_def): Assert that the underlying pointer is non-null. * src/abg-ir.cc (pointer_type_def::pointer_type_def): Handle the case of pointer to void. (equals): Likewise in the overload for const pointer_type_def. (pointer_type_def::get_qualified_name): Likewise. Signed-off-by: Dodji Seketeli <dodji@redhat.com> |
||
---|---|---|
doc | ||
include | ||
m4 | ||
scripts | ||
src | ||
tests | ||
tools | ||
.gitignore | ||
abigail.m4 | ||
AUTHORS | ||
changelog | ||
ChangeLog | ||
COMMIT-LOG-GUIDELINES | ||
COMPILING | ||
config.h.in | ||
configure.ac | ||
CONTRIBUTING | ||
COPYING | ||
COPYING-LGPLV2 | ||
COPYING-LGPLV3 | ||
gen-changelog.py | ||
install-sh | ||
libabigail.pc.in | ||
ltmain.sh | ||
Makefile.am | ||
README | ||
test21-type-suppr-0.suppr | ||
test21-type-suppr-report-0.txt |
This is the Application Binary Interface Generic Analysis and Instrumentation Library. It aims at constructing, manipulating, serializing and de-serializing ABI-relevant artifacts. The set of artifacts that we are intersted is made of quantities like types, variable, fonctions and declarations of a given library or program. For a given library or program this set of quantities is called an ABI corpus. This library aims at (among other things) providing a way to comparing two ABI Corpuses, provide detailed information about their differences, and help build tools to infer interesting conclusions about these differences. You are welcome to contribute to this project after reading the files CONTRIBUTING and COMMIT-LOG-GUIDELINES files in the source tree. Communicating with the maintainers of this project -- including sending patches to be include to the source code -- happens via email at libabigail@sourceware.org.