(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr106933-1.c
       1  /* { dg-do compile { target int128 } } */
       2  /* { dg-options "-O2" } */
       3  
       4  short int
       5  bar (void);
       6  
       7  __int128
       8  empty (void)
       9  {
      10  }
      11  
      12  __attribute__ ((simd)) int
      13  foo (__int128 *p)
      14  {
      15    int a = 0x80000000;
      16  
      17    *p = empty ();
      18  
      19    return *p == (a < bar ());
      20  }
      21