gcc/gcc/testsuite/gcc.target/alpha/pr61586.c

11 lines
196 B
C

/* { dg-do compile } */
/* { dg-options "-O2 -mieee" } */
void foo (int *dimensions, double **params, int hh)
{
if (params[hh])
;
else if (dimensions[hh] > 0)
params[hh][0] = 1.0f;
}