1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdump-tree-esra -w" } */
4 #define vector __attribute__((vector_size(16) ))
10 vector
float foo( vector
float v
)
14 struct VecClass y
= *(struct VecClass
*)&x
;
18 /* We should be able to remove the intermediate struct and directly
19 return x. As we do not fold VIEW_CONVERT_EXPR<struct VecClass>(x).v
20 that doesn't happen right now. */
21 /* { dg-final { scan-tree-dump-times "VIEW_CONVERT_EXPR" 1 "esra"} } */
22 /* { dg-final { cleanup-tree-dump "esra" } } */