* cfgloopmanip.c (duplicate_loop_to_header_edge): Cleanup profile
[official-gcc.git] / gcc / testsuite / gnat.dg / recursive_call.adb
blobab60e4491bd84c55694a7226fdd43bb87fe0abc8
1 -- { dg-do compile }
2 -- { dg-options "-gnat2012" }
4 function Recursive_Call (File : String; Status : out Boolean) return Boolean is
5 begin
6 if File /= "/dev/null" then
7 return Recursive_Call ("/dev/null", Status);
8 end if;
9 return False;
10 end;