1typedef int v2si __attribute__ ((vector_size (8)));
2typedef unsigned di __attribute__ ((mode(DI)));
3void foo(unsigned long);
4void bar() {
5    v2si x = { 1, 2 };
6    foo((di) x);
7}
8