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