PR tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git] / gcc / testsuite / gnat.dg / pure_function3a.adb
blob879c6bc2b6ceaeecab6cf91371d12cc0268a341c
1 -- { dg-do compile }
2 -- { dg-options "-O -gnatws -fdump-tree-optimized" }
4 with Pure_Function3_Pkg; use Pure_Function3_Pkg;
6 procedure Pure_Function3a is
7 V : T;
8 begin
9 if F (V) = 1 then
10 raise Program_Error;
11 elsif F (V) = 2 then
12 raise Program_Error;
13 end if;
14 end;
16 -- { dg-final { scan-tree-dump-times "pure_function3_pkg.f" 1 "optimized" } }