------- Comment #22 from pinskia at gcc dot gnu dot org 2005-12-14 02:50
-------
Here is a couple more structs which FSF's GCC gets wrong:
struct f{int c; struct {long long t;}; d;};
---
struct a{int tt; long long t; int i;};
struct f{int tt; struct a d; int t;};
----
struct a{long long t; int i;};
struct f{int tt; struct a d; int t;};There might be a lot more. All related to "long long". -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23067
