aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/arm/neon-reload-class.c
blob: c63aa04960ccb1250589588851da5b5d19a357a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* { dg-do compile } */
/* { dg-require-effective-target arm_neon_ok } */
/* { dg-options "-O2 -ftree-vectorize" }  */
/* { dg-add-options arm_neon } */


void
_op_blend_p_caa_dp(unsigned *s, unsigned* e, unsigned *d, unsigned c) {
  while (d < e) {
    *d = ( (((((*s) >> 8) & 0x00ff00ff) * (c)) & 0xff00ff00) + (((((*s) & 0x00ff00ff) * (c)) >> 8) & 0x00ff00ff) );
    d++;
    s++;
  }
}

/* These constants should be emitted as immediates rather than loaded from memory.  */

/* { dg-final { scan-assembler-not "(\\.d?word|mov(w|t))" } } */