URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gnat.dg/] [loop_optimization5.adb] - Rev 696
Compare with Previous | Blame | View Log
-- { dg-do compile } -- { dg-options "-O -gnatp" } with Loop_Optimization5_Pkg; use Loop_Optimization5_Pkg; procedure Loop_Optimization5 is Str : constant String := "12345678"; Cmd : constant String := Init; StartP : Positive := Cmd'First; StartS : Positive := Cmd'Last + 1; EndP : Natural := StartP - 1; Full_Cmd : String_Access; begin for J in StartP .. Cmd'Last - Str'Length + 1 loop if Cmd (J .. J + Str'Length - 1) = Str then EndP := J - 1; exit; end if; end loop; Full_Cmd := Locate (Cmd (StartP .. EndP)); end;