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
Implement C _FloatN, _FloatNx types.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tls
/
opt-13.c
blob
8eea76b68ab5f72cac09a8f7efedf37962e736ff
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
/* { dg-require-effective-target tls } */
4
5
__thread
struct
6
{
7
int
a
;
8
char
b
[
32
];
9
}
thr
;
10
11
int
12
main
()
13
{
14
__builtin_strcpy
(
thr
.
b
,
"abcd"
);
15
return
0
;
16
}