* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / mangle-1.c
blob6797bc2436f49c445e2eb805ef6b01dd568afc6b
2 #if __nvptx__
3 /* Doesn't like . in labels. */
4 #define SEP "$"
5 #else
6 #define SEP "."
7 #endif
9 int foo(void)
11 static int x asm ("x") = 3;
12 return x++;
15 int X2 asm ("x" SEP "0") = 4;
16 int X3 asm ("_x" SEP "0") = 5;