view gcc/testsuite/gcc.dg/pr87979.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
line wrap: on
line source

/* PR rtl-optimization/87979 */
/* { dg-do compile } */
/* { dg-options "-Os -fmodulo-sched -fno-tree-loop-im" } */
/* { dg-additional-options "-march=z196" { target { s390*-*-* } } } */

void foo(void)
{
  static int m;
  for (int i = 0; i < 10; ++i)
    m++;
}