* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / simd-1.c
blob6a07bbb6ac6b492e8df5d33f259a8a8d6740bf60
1 typedef int v2si __attribute__ ((vector_size (8)));
2 typedef unsigned di __attribute__ ((mode(DI)));
3 void foo(unsigned long);
4 void bar() {
5 v2si x = { 1, 2 };
6 foo((di) x);