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.dg
/
tls
/
pr24428-2.c
blob
a0ceecc06243e2c470f13a14ed9513cff9d2456f
1
/* { dg-do run } */
2
/* { dg-options "-O2" } */
3
/* { dg-require-effective-target tls_runtime } */
4
5
__thread
double
thrtest
[
81
];
6
int
main
()
7
{
8
double
*
p
, *
e
;
9
e
= &
thrtest
[
81
];
10
for
(
p
= &
thrtest
[
0
];
p
<
e
; ++
p
)
11
*
p
=
1.0
;
12
return
0
;
13
}