Add compile command to each testcase
[gcc-vect-testsuite.git] / pr33846.c
blob3f421c9b75de5310d997a03184315886b0829f6a
1 /* Testcase by Martin Michlmayr <tbm@cyrius.com> */
2 /* { dg-do compile } */
3 /* { dg-require-effective-target vect_shift } */
5 int clamp_val (int i)
7 return ~i >> 31;
10 typedef __PTRDIFF_TYPE__ intptr_t;
12 void _mix_some_samples (intptr_t buf, int *mix_buffer, int mix_size)
14 int i;
15 signed int *p = mix_buffer;
16 for (i = mix_size ; i > 0; i--)
18 *((short *) buf) = clamp_val ((*p) + 0x800000);
19 buf += 2;
20 p++;
24 /* { dg-final { cleanup-tree-dump "vect" } } */