1 /* { dg-do compile { target int128 } } */
2 /* { dg-options "-O2 -msse2 -mtune=core2 -mtune-ctrl=sse_unaligned_store_optimal -dp" } */
3 
4 struct foo
5 {
6   __int128 i;
7 }__attribute__ ((packed));
8 
9 extern struct foo x;
10 
11 void
foo(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 } } } */
19