repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
mangle-1.c
blob
6797bc2436f49c445e2eb805ef6b01dd568afc6b
1
2
#if __nvptx__
3
/* Doesn't like . in labels. */
4
#define SEP
"$"
5
#else
6
#define SEP
"."
7
#endif
8
9
int
foo
(
void
)
10
{
11
static int
x
asm
(
"x"
) =
3
;
12
return
x
++;
13
}
14
15
int
X2
asm
(
"x"
SEP
"0"
) =
4
;
16
int
X3
asm
(
"_x"
SEP
"0"
) =
5
;
17