jit: Fix Darwin bootstrap after r15-1699.
[official-gcc.git] / gcc / testsuite / c-c++-common / analyzer / pr105252.c
bloba093eababc55912fe9f76fbd4fe9ea0a505538fb
1 /* { dg-additional-options "-fnon-call-exceptions -O" } */
3 typedef unsigned char C;
4 typedef unsigned char __attribute__((__vector_size__ (4))) V;
6 C m;
8 static inline void
9 bar (C c, V v, V *r)
11 v %= (c | v) % m;
12 *r = v;
15 void
16 foo (void)
18 V x;
19 bar (0, (V){2}, &x);