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
/
graphite
/
pr84650.c
blob
e59d16184f19fc4f97a8a0d04340d5e9d8e672c3
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fgraphite-identity -fno-tree-copy-prop --param lim-expensive=3" } */
3
4
unsigned int
dj
;
5
6
void
7
np
(
void
)
8
{
9
const unsigned int
uw
=
2
;
10
unsigned int
eu
;
11
12
for
(
eu
=
0
;
eu
<
uw
; ++
eu
)
13
{
14
for
(
dj
=
0
;
dj
<
uw
; ++
dj
)
15
;
16
eu
-= !!(
dj
-
uw
-
1
);
17
}
18
}