aboutsummaryrefslogtreecommitdiff
path: root/libctf/testsuite/libctf-regression/pptrtab-a.c
diff options
context:
space:
mode:
authorNick Alcock <nick.alcock@oracle.com>2021-01-19 12:45:18 +0000
committerNick Alcock <nick.alcock@oracle.com>2021-01-19 12:45:19 +0000
commite05a3e5a491a8ef2079eef558bbe8e9feb0b3c03 (patch)
tree8b1526e2272d3ed24e412425e7979fef15bdf4e4 /libctf/testsuite/libctf-regression/pptrtab-a.c
parentc98de297b37ffee7bdb48682eec73e4a608c3974 (diff)
downloadbinutils-e05a3e5a491a8ef2079eef558bbe8e9feb0b3c03.zip
binutils-e05a3e5a491a8ef2079eef558bbe8e9feb0b3c03.tar.gz
binutils-e05a3e5a491a8ef2079eef558bbe8e9feb0b3c03.tar.bz2
libctf: lookup_by_name: do not return success for nonexistent pointer types
The recent work allowing lookups of pointers in child dicts when the pointed-to type is in the parent dict broke the case where a pointer type that does not exist at all is looked up: we mistakenly return the pointed-to type, which is likely not a pointer at all. This causes considerable confusion. Fixed, with a new testcase. libctf/ChangeLog 2021-01-19 Nick Alcock <nick.alcock@oracle.com> * ctf-lookup.c (ctf_lookup_by_name_internal): Do not return the base type if looking up a nonexistent pointer type. * testsuite/libctf-regression/pptrtab*: Test it.
Diffstat (limited to 'libctf/testsuite/libctf-regression/pptrtab-a.c')
-rw-r--r--libctf/testsuite/libctf-regression/pptrtab-a.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libctf/testsuite/libctf-regression/pptrtab-a.c b/libctf/testsuite/libctf-regression/pptrtab-a.c
index e9f656a..6541487 100644
--- a/libctf/testsuite/libctf-regression/pptrtab-a.c
+++ b/libctf/testsuite/libctf-regression/pptrtab-a.c
@@ -1,3 +1,5 @@
typedef long a_t;
+typedef long b_t;
a_t *a;
+b_t ignore2;