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
/
pr89677.c
blob
a45ca1f61a11594607b0f16185e9df9e4c89a8e0
1
/* { dg-do compile } */
2
/* { dg-require-effective-target int32plus } */
3
4
int
a
,
b
,
d
;
5
unsigned
c
;
6
float
e
,
f
,
g
;
7
void
h
() {
8
float
*
i
= &
g
;
9
for
(;
c
<
10
;
c
+=
3
)
10
for
(;
d
;
d
+=
3
) {
11
a
= *
i
;
12
g
=
f
+
0
;
13
f
=
b
+ *
i
+ (
b
-
e
+
305219
) + -
b
+
3
;
14
}
15
}