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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
gcc.dg
/
pr21419.c
blob
dc8f602e6b22a5aff8b242f6a093f150be0e5838
1
/* { dg-do compile } */
2
const int
i
=
0
;
3
4
void
f
(
void
)
5
{
6
__asm__
__volatile__
(
""
:
"=m"
(
i
));
/* { dg-error "read-only variable" } */
7
8
}
9
10
void
g
(
const int
set
)
11
{
12
__asm__
__volatile__
(
""
:
"=r"
(
set
));
/* { dg-error "read-only location" } */
13
}
14
15