blob: 8ec5e7034a58c3bcacc238d72ea6a4f31d334907 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* PR target/14313 */
/* Origin: <Pawe Sikora <pluto@ds14.agh.edu.pl> */
/* { dg-do compile } */
/* { dg-options "" } */
/* { dg-options "-march=pentium3" { target i?86-*-* } } */
int main()
{
typedef long long int v __attribute__ ((vector_size (16)));
v a, b;
a = b;
return 0;
}
|