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
svn merge -r102224:107263 svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-3_4-branch
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr14289-2.c
blob
7530b468caca87059130872b6208cbdefd3a6cfa
1
/* PR middle-end/14289 */
2
/* { dg-do compile { target i?86-*-* } } */
3
/* { dg-options "-O0" } */
4
5
static
register
int
a
[
2
]
asm
(
"ebx"
);
/* { dg-error "multiple storage" } */
6
7
void
Nase
(
void
)
8
{
9
int
i
=
6
;
10
a
[
i
]=
5
;
/* { dg-error "address of global" } */
11
}
12