blob: 8f47235a8db8b6a9f0e4ab660c5dcc614489fd0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* PR rtl-optimization/84878 */
/* { dg-do compile { target { powerpc*-*-* } } } */
/* { dg-options "-O2 -maltivec -mno-vsx -fmodulo-sched -ftree-vectorize -funroll-loops -fassociative-math -fno-signed-zeros -fno-trapping-math" } */
/* { dg-require-effective-target powerpc_altivec } */
int ek;
float zu;
int
k5 (int ks)
{
while (ek < 1)
{
ks += (int)(0x1000000 + zu + !ek);
++ek;
}
return ks;
}
|