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
2018-06-05 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
asm-9.c
blob
4e3244169c779d9d83b42779251dddbfcd392274
1
/* PR inline-asm/15740 */
2
/* { dg-do compile } */
3
/* { dg-options "-O" } */
4
5
void
foo
(
void
)
6
{
7
int
a
,
b
;
8
a
=
1
;
9
b
=
a
+
1
;
10
asm
(
""
: :
"m"
(
a
));
11
}