Hello,
When running the below code, it fails with a component reference failure.
#include
#include
typedef struct mb {
int l;
union {
char payload[2]; /* actually a bunch of bytes */
double align;
} u;
} mb;
int main(int argc, char **argv)
{
int l;
struct mb c;
l =...