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
/
gcc.dg
/
pr21419.c
blob
f1e9cb924683ec9dd8fea96ef95a1418109c0451
1
/* { dg-do compile } */
2
const int
i
=
0
;
3
4
void
f
(
void
)
5
{
6
__asm__
__volatile__
(
""
:
"=m"
(
i
));
/* { dg-error "invalid lvalue in asm output" } */
7
8
}
9
10
void
g
(
const int
set
)
11
{
12
__asm__
__volatile__
(
""
:
"=r"
(
set
));
/* { dg-error "invalid lvalue in asm output" } */
13
}
14
15