(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
execute/
pr49218.c
       1  #ifdef __SIZEOF_INT128__
       2  typedef __int128 L;
       3  #else
       4  typedef long long L;
       5  #endif
       6  float f;
       7  
       8  int
       9  main ()
      10  {
      11    L i = f;
      12    if (i <= 10)
      13      do
      14        {
      15  	++i;
      16  	asm ("");
      17        }
      18      while (i != 11);
      19    return 0;
      20  }