* gcc.target/i386/pr70021.c: Add -mtune=skylake.
[official-gcc.git] / gcc / testsuite / gcc.target / bfin / 20090914-2.c
blob55255d7a84711d8b5e28226099b9db2c8d14731b
1 /* { dg-do compile { target bfin-*-* } } */
3 typedef short fract16;
4 typedef short __v2hi __attribute__ ((vector_size (4)));
5 typedef __v2hi raw2x16;
6 typedef raw2x16 fract2x16;
7 typedef struct complex_fract16 {
8 fract16 re;
9 fract16 im;
10 } __attribute__((aligned(4))) complex_fract16;
13 __inline__
14 __attribute__ ((always_inline))
15 static complex_fract16 cmlt_fr16 (complex_fract16 _a,
16 complex_fract16 _b)
18 complex_fract16 r;
19 fract2x16 i;
21 i = __builtin_bfin_cmplx_mul(__builtin_bfin_compose_2x16((_a).im, (_a).re),
22 __builtin_bfin_compose_2x16((_b).im, (_b).re));
23 (r).re = __builtin_bfin_extract_lo(i);
24 (r).im = __builtin_bfin_extract_hi(i);
25 return r;
29 complex_fract16 f(complex_fract16 a, complex_fract16 b) {
30 return cmlt_fr16(a, b);