1int foo(void)
2{
3  static int x asm ("x") = 3;
4  return x++;
5}
6
7int X2 asm ("x.0") = 4;
8int X3 asm ("_x.0") = 5;
9
10