aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/alpha/pr61586.c
blob: afb1af3597fe7df096b9b2f3cc954e77d47f4e99 (plain)
1
2
3
4
5
6
7
8
9
10
/* { 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;
}