(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr70155-9.c
       1  /* { dg-do compile { target int128 } } */
       2  /* { dg-options "-O2 -msse2 -mtune=core2 -dp" } */
       3  
       4  struct foo
       5  {
       6    __int128 i;
       7  }__attribute__ ((packed));
       8  
       9  extern struct foo x, y;
      10  
      11  void
      12  foo (void)
      13  {
      14    x = y;
      15  }
      16  
      17  /* { dg-final { scan-assembler-not "movv1ti_internal" } } */