blob: 30aeace6609e5cb053e4ca4fcb41c00ef58d474e [file] [log] [blame]
struct foo_type
{
unsigned int a;
unsigned short b;
unsigned char c;
};
struct foo_type foo CMEM_SECTION_ATTR
int
f ()
{
foo.a = 3;
foo.b = 2;
foo.c = 1;
return 0;
}