summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/i386-sse-8.c
blob: 7ae52fdca7c869f356600d03d48816c368a0ad35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* PR target/14313 */
/* Origin: <Pawe Sikora <pluto@ds14.agh.edu.pl> */

/* The xstormy16 doesn't support V2DI.  */
/* { dg-do compile { xfail xstormy16-*-* } } */
/* { dg-options "" } */
/* { dg-options "-march=pentium3" { target i?86-*-* } } */
/* { dg-skip-if "" { i?86-*-* } { "-m64" } { "" } } */

int main() 
{ 
  typedef long long int v __attribute__ ((vector_size (16))); 
  v a, b; 
  a = b; 
  return 0; 
}