i386: Adjust rtx cost for imulq and imulw [PR115749]
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-bic-bitmask-8.c
blobfd0314b4dd1ed54e2d3c22da639166229fdecc1f
1 /* { dg-skip-if "missing optab for vectorization" { sparc*-*-* } } */
2 /* { dg-additional-options "-O3 -fdump-tree-dce -w" } */
4 #include <stdint.h>
6 __attribute__((noinline, noipa))
7 void fun1(uint32_t *x, int n)
9 for (int i = 0; i < (n & -16); i++)
10 x[i] = (x[i]&(~1)) != 0;
13 __attribute__((noinline, noipa, optimize("O1")))
14 void fun2(uint32_t *x, int n)
16 for (int i = 0; i < (n & -16); i++)
17 x[i] = (x[i]&(~1)) != 0;
20 #include "../bic-bitmask.h"
22 /* { dg-final { scan-tree-dump-times {>\s*.+\{ 1,.+\}} 1 dce7 { target vect_int } } } */
23 /* { dg-final { scan-tree-dump-not {&\s*.+\{ 4294967294,.+\}} dce7 { target vect_int } } } */
24 /* { dg-final { scan-tree-dump-not {\s+bic\s+} dce7 { target { aarch64*-*-* } } } } */