OSDN Git Service

2010-01-21 Martin Jambor <mjambor@suse.cz>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / tree-ssa / forwprop-5.c
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdump-tree-forwprop1 -w" } */
3
4 #define vector __attribute__((vector_size(16) ))
5 struct VecClass
6 {
7   vector float v;
8 };
9
10 vector float foo( vector float v )
11 {
12     vector float x = v;
13     x = x + x;
14     struct VecClass y = *(struct VecClass*)&x;
15     return y.v;
16 }
17
18 /* We should be able to convert the cast to a VCE in forwprop1. */
19 /* { dg-final { scan-tree-dump-times "VIEW_CONVERT_EXPR" 1 "forwprop1"} } */
20 /* { dg-final { cleanup-tree-dump "forwprop1" } } */
21