diff options
author | Nick Alcock <nick.alcock@oracle.com> | 2025-03-19 11:16:07 +0000 |
---|---|---|
committer | Nick Alcock <nick.alcock@oracle.com> | 2025-03-20 12:11:43 +0000 |
commit | 3b4bc9a83808ec4eae0f4ff70a48ddb1995bde65 (patch) | |
tree | 94cac7bb7433138237867631ee71893d68cc70d6 /libctf/ctf-open.c | |
parent | 737c6957a4dd243aa4d6b23a104765117446b49e (diff) | |
download | binutils-3b4bc9a83808ec4eae0f4ff70a48ddb1995bde65.zip binutils-3b4bc9a83808ec4eae0f4ff70a48ddb1995bde65.tar.gz binutils-3b4bc9a83808ec4eae0f4ff70a48ddb1995bde65.tar.bz2 |
libctf: compilation error fixes
Diffstat (limited to 'libctf/ctf-open.c')
-rw-r--r-- | libctf/ctf-open.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libctf/ctf-open.c b/libctf/ctf-open.c index 118a33f..50f1603 100644 --- a/libctf/ctf-open.c +++ b/libctf/ctf-open.c @@ -340,6 +340,7 @@ get_vbytes_v4 (ctf_dict_t *fp, const ctf_type_t *tp, return (sizeof (ctf_member_t) * vlen); case CTF_K_FUNCTION: return (sizeof (ctf_param_t) * vlen); + case CTF_K_FUNC_LINKAGE: case CTF_K_VAR: return (sizeof (ctf_linkage_t)); case CTF_K_DATASEC: @@ -354,7 +355,6 @@ get_vbytes_v4 (ctf_dict_t *fp, const ctf_type_t *tp, case CTF_K_VOLATILE: case CTF_K_CONST: case CTF_K_RESTRICT: - case CTF_K_FUNC: case CTF_K_BTF_FLOAT: return 0; /* These should have been resolved away by LCTF_KIND. @@ -1659,9 +1659,9 @@ ctf_bufopen (const ctf_sect_t *ctfsect, const ctf_sect_t *symsect, bp = (const ctf_preamble_t *) ctfsect->cts_data; pp = (const ctf_preamble_t *) ctfsect->cts_data; /* CTFv3 or below. */ - if (_libctf_unlikely_ (bp->btf_magic != BTF_MAGIC)) + if (_libctf_unlikely_ (bp->btf_magic != CTF_BTF_MAGIC)) { - if (bp->btf_magic == bswap_16 (BTF_MAGIC)) + if (bp->btf_magic == bswap_16 (CTF_BTF_MAGIC)) { format = IS_BTF; foreign_endian = 1; |