1 /* PR target/10072 */
2 /* Originator: Peter van Hoof <p.van-hoof@qub.ac.uk> */
3 
4 /* { dg-do compile } */
5 /* { dg-options "-std=c99 -O1 -mcpu=ultrasparc -ffast-math" } */
6 
p(int v)7 void p(int v)
8 {
9   int i=v,j;
10   float a,b,c,x[i];
11 
12   x[i] = (a/(((b)>(c)) ? (b) : (c)) - (((i) == (j)) ? 1.f : 0.f));
13 }
14