repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
ext
/
asm7.C
blob
a5cad0073719e6f626ba00912877866061e003b5
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
void g(const int set)
10
{
11
__asm__ __volatile__ ("" : "=r" (set)); /* { dg-error "read-only parameter" } */
12
}
13
14