(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr106933-2.c
       1  /* { dg-do compile { target int128 } } */
       2  /* { dg-options "-msse4 -Os" } */
       3  
       4  __int128 n;
       5  
       6  __int128
       7  empty (void)
       8  {
       9  }
      10  
      11  int
      12  foo (void)
      13  {
      14    n = empty ();
      15  
      16    return n == 0;
      17  }