summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/pr70155-21.c
blob: be76e5f9614f027a662dc3af3cf9c1705bad52c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-do compile { target int128 } } */
/* { dg-options "-O2 -msse2 -mtune=generic -dp" } */

extern __int128 a, b, c;

void
foo (void)
{
  a = b;
  c = a + 1;
}

/* { dg-final { scan-assembler-not "movv1ti_internal" } } */