1 /* { dg-do compile { target int128 } } */ 2 /* { dg-options "-O2 -msse2 -mtune=generic -dp" } */ 3 4 extern __int128 a, b, c, d, e, f; 5 6 void foo(void)7foo (void) 8 { 9 a = 0; 10 b = -1; 11 c = 0; 12 d = -1; 13 e = 0; 14 f = -1; 15 } 16 17 /* { dg-final { scan-assembler-times "movv1ti_internal" 8 } } */ 18 /* { dg-final { scan-assembler-not "\\*movdi_internal" { target nonpic } } } */ 19