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/
[official-gcc.git]
/
gcc
/
testsuite
/
c-c++-common
/
asmgoto-1.c
blob
9c729fdd57167f53df52371026a354dff0468c5e
1
/* { dg-do compile } */
2
/* { dg-options "" } */
3
4
void
5
foo
(
void
)
6
{
7
int
i
=
0
;
8
asm
(
""
: : :
"memory"
);
9
asm
(
""
: : : );
10
asm
(
""
: :
"r"
(
i
));
11
asm
(
""
: : );
12
asm
(
""
:
"=r"
(
i
));
13
asm
(
""
: );
14
asm
(
""
);
15
}