(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
arc/
cmem-ld.inc
struct foo_type
{
  unsigned int a;
  unsigned short b;
  unsigned char c;
};

struct foo_type foo __attribute__ ((section (".cmem")));

unsigned int
f ()
{
  unsigned int tmp = foo.a + foo.b + foo.c;
  return tmp;
}