2018-05-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / binop-xor1.c
blobe2ea938dd91a618bb85ce7bde51dff6f4a6a4dae
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
4 int
5 foo (int a, int b, int c)
7 return ((a && !b && c) || (!a && b && c));
10 /* { dg-final { scan-tree-dump-times "\\\^" 1 "optimized" { xfail logical_op_short_circuit } } } */