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