public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/66060] New: struct member allocation off.
@ 2015-05-07 21:55 darpeer at hotmail dot com
  0 siblings, 0 replies; only message in thread
From: darpeer at hotmail dot com @ 2015-05-07 21:55 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66060

            Bug ID: 66060
           Summary: struct member allocation off.
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: darpeer at hotmail dot com
  Target Milestone: ---

Using gdb, two struct members end up at the same offset.

gcc (GCC) 6.0.0 20150418 (experimental) and older.

gcc -c -O0 -ggdb3 struct-example.C

cat struct-example.C
struct ODD_S {
    char a[/*0x2000 */   2097152];
    char b[/*0x400 */  536870912];
    char c[/*0x8000 */  33554432];
} l_;

(gdb) p &l_.a
$1 = (char (*)[2097152]) 0x0 <l_>
(gdb) p &l_.b
$2 = (char (*)[536870912]) 0x200000 <l_+2097152>
(gdb) p &l_.c
$3 = (char (*)[33554432]) 0x200000 <l_+2097152>


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-05-07 21:55 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-07 21:55 [Bug c/66060] New: struct member allocation off darpeer at hotmail dot com

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).