PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / binop-notand6a.c
blob9f3d33b526b843bfbe53045763ed55aa6e44769e
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
4 int
5 foo (unsigned long a, long b)
7 return (a & !a) | (b & (b == 0));
10 /* { dg-final { scan-tree-dump-times "return 0" 1 "optimized" } } */