PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gnat.dg / opt54.adb
blobb4aaa0900e64c82102c7dfc7a9d3b077630f0c7c
1 -- { dg-do compile }
2 -- { dg-options "-O2 -fdump-tree-optimized" }
4 function Opt54 (Val, Max : Integer) return Integer is
5 begin
6 if Val >= Max then
7 return Max;
8 end if;
9 return Val + 1;
10 end;
12 -- { dg-final { scan-tree-dump-not "gnat_rcheck" "optimized" } }