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
/
ia64
/
small-addr-1.c
blob
8462186235e111e5332b5ec51c5c574671e07604
1
/* PR target/21632 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2" } */
4
5
struct
S
6
{
7
void
*
s
[
256
];
8
};
9
10
struct
T
11
{
12
long
t
[
23
];
13
struct
S
*
u
;
14
};
15
16
extern
struct
T
__attribute__
((
model
(
small
)))
v
;
17
18
void
*
19
foo
(
void
)
20
{
21
return
v
.
u
->
s
[
0
];
22
}
23