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
Use conditional internal functions in if-conversion
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
bfin
/
wmul-2.c
blob
2f2d2527e69bf39b8e25b83bf7618e223372c6f8
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
4
void
vec_mpy
(
int
y
[],
const short
x
[],
short
scaler
)
5
{
6
int
i
;
7
8
for
(
i
=
0
;
i
<
150
;
i
++)
9
y
[
i
] += ((
scaler
*
x
[
i
]) >>
31
);
10
}
11
12
/* { dg-final { scan-assembler-times "\\(IS\\)" 1 } } */