summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/ssa-pre-32.c
blob: d9bd3a957558832072f9cbf3e3f3907d7ffe7a32 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-pre" } */

unsigned f(unsigned x, unsigned y, _Bool b)
{
#define m (b?-1:0)
  return (x&m)|(y&~m);
#undef m
}

/* { dg-final { scan-tree-dump "# prephitmp_\[0-9\]+ = PHI <\[xy\]_\[0-9\]+\\(D\\)\[^,\]*, \[xy\]_\[0-9\]+\\(D\\)" "pre" } } */