annotate gcc/testsuite/gcc.dg/tree-ssa/ssa-pre-32.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* { dg-do compile } */
kono
parents:
diff changeset
2 /* { dg-options "-O2 -fdump-tree-pre" } */
kono
parents:
diff changeset
3
kono
parents:
diff changeset
4 unsigned f(unsigned x, unsigned y, _Bool b)
kono
parents:
diff changeset
5 {
kono
parents:
diff changeset
6 #define m (b?-1:0)
kono
parents:
diff changeset
7 return (x&m)|(y&~m);
kono
parents:
diff changeset
8 #undef m
kono
parents:
diff changeset
9 }
kono
parents:
diff changeset
10
kono
parents:
diff changeset
11 /* { dg-final { scan-tree-dump "# prephitmp_\[0-9\]+ = PHI <\[xy\]_\[0-9\]+\\(D\\)\[^,\]*, \[xy\]_\[0-9\]+\\(D\\)" "pre" } } */