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
/
tree-ssa
/
pr95804.c
blob
83c0ab45cf50d0edc3e11fea4e6da104745af1ae
1
/* PR tree-optimization/95804 */
2
/* { dg-do compile } */
3
/* { dg-options "-O3" } */
4
5
int
a
,
b
,
c
,
d
,
e
,
f
;
6
void
g
() {
7
short
*
h
= (
short
*)&
d
;
8
char
*
i
= (
char
*)&
b
;
9
for
(;
e
;
e
++) {
10
for
(;
f
;
f
++) {
11
b
=
3
;
12
if
((
c
=
8
) >= *
i
)
13
a
=
5
? *
h
:
0
;
14
h
= (
short
*)
g
;
15
}
16
i
= (
char
*)&
c
;
17
}
18
}