aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr25513.c
blob: d2aa591fe2102356ec48ea7f7b4a24eaf1fbc883 (plain)
1
2
3
4
5
6
7
8
9
int f(void)
{
  static _Complex double t;
  int i, j;
  for(i = 0;i<2;i++)
    for(j = 0;j<2;j++)
      t = .5 * 1.0;
  return t;
}