blob: 885c643b927248ee9b86380f986b76d89fa8fd5e (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* { dg-do compile } */
/* { dg-options "-O3 -ffast-math" } */
typedef float __m128 __attribute__ ((__vector_size__ (16), __may_alias__));
__m128 foo (__m128 a)
{
return a + a;
}
|