public inbox for libabigail@sourceware.org
 help / color / mirror / Atom feed
From: "gprocida at google dot com" <sourceware-bugzilla@sourceware.org>
To: libabigail@sourceware.org
Subject: [Bug default/28060] [libabigail] Invalid offset for bitfields
Date: Thu, 08 Jul 2021 13:41:22 +0000	[thread overview]
Message-ID: <bug-28060-9487-9R2WyIs4kd@http.sourceware.org/bugzilla/> (raw)
In-Reply-To: <bug-28060-9487@http.sourceware.org/bugzilla/>

https://sourceware.org/bugzilla/show_bug.cgi?id=28060

--- Comment #4 from gprocida at google dot com ---
And, for completeness, and example where the ABI has changed incompatibly but
the ABI XML remains the same.

==> test2.0.c <==
#include <inttypes.h>

struct S {
  char name[5];
  uint8_t bit:1;
  uint32_t :0;
};

uint8_t foo(const struct S * s) { return s->bit; }

==> test2.1.c <==
#include <inttypes.h>

struct S {
  char name[5];
  uint16_t :0;
  uint8_t bit:1;
  uint32_t :0;
};

uint8_t foo(const struct S * s) { return s->bit; }

-- 
You are receiving this mail because:
You are on the CC list for the bug.

  parent reply	other threads:[~2021-07-08 13:41 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-07  9:27 [Bug default/28060] New: " david.marchand at redhat dot com
2021-07-07  9:31 ` [Bug default/28060] " david.marchand at redhat dot com
2021-07-08  9:34 ` gprocida at google dot com
2021-07-08  9:42 ` david.marchand at redhat dot com
2021-07-08 13:41 ` gprocida at google dot com [this message]
2021-07-19 12:01 ` dodji at redhat dot com

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-28060-9487-9R2WyIs4kd@http.sourceware.org/bugzilla/ \
    --to=sourceware-bugzilla@sourceware.org \
    --cc=libabigail@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).