OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc4/] [gcc/] [testsuite/] [gnat.dg/] [loop_optimization5.adb] - Rev 519

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;
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.