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
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr14289-1.c
blob
71317d542c773fbf5a38b8096245297eacf9b14e
1
/* PR middle-end/14289 */
2
/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
3
/* { dg-options "-O0" } */
4
5
register
int
a
[
2
]
asm
(
"ebx"
);
6
7
void
Nase
(
void
)
8
{
9
int
i
=
6
;
10
a
[
i
]=
5
;
/* { dg-error "address of global" } */
11
}
12