hubert.reinterpretcast added a comment.

From the comment, it seems the code as-is fails to test the property intended. 
It seems we want this:

  struct packed_chars {
    char a : 8, b : 8, c : 8, d : 4;
    char e : 8 __attribute__((packed));
    char f : 4, g : 8, h : 8, i : 8;
  };
  extern int o1[sizeof(struct packed_chars) == 8 ? 1 : -1];
  extern int o2[__alignof(struct packed_chars) == 4 ? 1 : -1];


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D102715/new/

https://reviews.llvm.org/D102715

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to