c++: Implement for namespace statics CWG 2867 - Order of initialization for structure...
[official-gcc.git] / gcc / testsuite / gcc.dg / bic-bitmask-16.c
blobf93912f0cc579b3c56e24577b36d755ec3737ed6
1 /* { dg-do run } */
2 /* { dg-options "-O1 -fdump-tree-dce" } */
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]&(~255)) > 0;
13 __attribute__((noinline, noipa, optimize("O0")))
14 void fun2(uint32_t *x, int n)
16 for (int i = 0; i < (n & -16); i++)
17 x[i] = (x[i]&(~255)) > 0;
20 #include "bic-bitmask.h"
22 /* { dg-final { scan-tree-dump-times {>\s* 255} 1 dce7 { target vect_int } } } */
23 /* { dg-final { scan-tree-dump-not {&\s* 4294967040} dce7 { target vect_int } } } */