1  /* { dg-do compile } */
       2  /* { dg-additional-options "-march=armv9-a" { target aarch64-*-* } } */
       3  
       4  int x, y, z;
       5  
       6  void f(void)
       7  {
       8    int t = 4;
       9    for (; x; x++)
      10      {
      11        if (y)
      12  	continue;
      13        t = 0;
      14      }
      15    z = t;
      16  }