OSDN Git Service

* gcc.c-torture/execute/multi-ix.c (CHUNK): Be more conservative
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / 20070522-1.c
1 /* This was PR 31606, we were trying to use TImode to expand the
2    struct copy in SRA but TImode is not support on ia32. */
3
4 struct Collision {
5    int edge;
6    int triangle;
7   float _M_instance[3] __attribute__((__aligned__));
8 };
9 void  get_collisions(struct Collision a) {
10   struct Collision b = a;
11 }