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
/
torture
/
pr57341.c
blob
3f5cc8dd720de1d64190bcbd2b681b6ec4b714a3
1
/* { dg-do run } */
2
/* { dg-additional-options "-msse" { target sse2_runtime } } */
3
4
int
a
,
d
;
5
int
*
b
= &
a
, **
c
;
6
int
7
main
()
8
{
9
int
e
;
10
{
11
int
f
[
4
];
12
for
(
d
=
0
;
d
<
4
;
d
++)
13
f
[
d
] =
1
;
14
e
=
f
[
1
];
15
}
16
int
*
g
[
28
] = { };
17
*
b
=
e
;
18
c
= &
g
[
0
];
19
if
(
a
!=
1
)
20
__builtin_abort
();
21
return
0
;
22
}