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
2018-05-17 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr27790.c
blob
e8986c4158acbd57eff3a389d8bab13e8aa997fc
1
/* { dg-do compile } */
2
/* { dg-options "-O -ftree-vectorize -msse2" } */
3
4
void
binarize
(
int
npixels
,
unsigned char
*
b
)
5
{
6
int
i
;
7
for
(
i
=
0
;
i
<
npixels
;
i
++)
8
b
[
i
] = (
b
[
i
] >
225
?
0xff
:
0
);
9
}