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
/
fold-condcmpconv-2.c
blob
5d3ef4a1e604df6790ff1d39a37cf9eb70c2df4e
1
/* { dg-do compile } */
2
/* { dg-options "-O3 -fdump-tree-ifcvt" } */
3
4
int
foo
(
short
a
[],
int
x
)
5
{
6
unsigned int
i
;
7
for
(
i
=
0
;
i
<
1000
;
i
++)
8
{
9
x
=
a
[
i
];
10
a
[
i
] = (
short
)(
x
<=
0
?
0
:
x
);
11
}
return
x
;
12
}
13
14
15
/* { dg-final { scan-tree-dump " = MAX_EXPR <" "ifcvt" } } */