2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / simd-1.c
blobc113bd4fa2d911f7e93b5663342f752fb6c65bf7
1 typedef int v2si __attribute__ ((mode(V2SI)));
2 typedef unsigned di __attribute__ ((mode(DI)));
3 void foo(unsigned long);
4 void bar() {
5 v2si x = { 1, 2 };
6 foo((di) x);