Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.target / arc / cmem-ld.inc
blob7b51bb39a1749cfcb779d1cd8cbec2a1b1293dd0
2 struct foo_type
4   unsigned int a;
5   unsigned short b;
6   unsigned char c;
7 };
9 struct foo_type foo __attribute__ ((section (".cmem")));
11 unsigned int
12 f ()
14   unsigned int tmp = foo.a + foo.b + foo.c;
15   return tmp;