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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tm
/
data-2.c
blob
3e2a604bfb31366f5b110ee5ce0f4273b5dc3fa0
1
/* { dg-do compile } */
2
/* { dg-options "-fgnu-tm" } */
3
/* Test read and write on all basic types. */
4
5
struct
S
6
{
7
int
x
[
10
];
8
};
9
10
static struct
S g
;
11
12
extern
void
fill
(
struct
S
*);
13
14
void
f
(
void
)
15
{
16
struct
S l
;
17
fill
(&
l
);
18
19
__transaction_atomic
{
20
g
=
l
;
21
}
22
}