PR tree-optimization/85826 - ICE in gimple-ssa-warn-restruct on
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr25382.c
blobd74765551c2a137aeb4db7d3e009f2bff8d157f4
1 /* PR tree-optimization/25382
2 VRP used to ignore BIT_AND_EXPRs for the purpose of distilling ranges.
3 Check that VRP now gets ranges from BIT_AND_EXPRs. */
5 /* { dg-do compile } */
6 /* { dg-options "-O2 -fno-tree-ccp -fdisable-tree-evrp -fdump-tree-vrp1" } */
8 int
9 foo (int a)
11 int b = a & 0xff;
12 if (b > 300)
13 return 2;
14 else
15 return 1;
18 /* { dg-final { scan-tree-dump-times "Folding predicate b_.* > 300 to 0" 1 "vrp1" } } */