blob: ec3acc16906f6d20fabc76ffc53058e4079f12a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* PR target/14343 */
/* 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-*-* x86_64-*-* } && ilp32 } } } */
int main()
{
typedef long long int v __attribute__ ((vector_size (16)));
v a, b;
a = b;
return 0;
}
|