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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gnat.dg/] [addr6.adb] - Rev 714

Go to most recent revision | Compare with Previous | Blame | View Log

-- { dg-do compile }
 
procedure Addr6 is
 
   type Byte is mod 2**8;
 
   type Byte_Arr1 is array (Positive range <>) of Byte;
   for Byte_Arr1'Alignment use 4;
 
   type Byte_Arr2 is array (Positive range <>) of Byte;
 
   function Length return Natural is
   begin
     return 1;
   end;
 
   function Empty return Byte_Arr2 is
     Null_Arr : Byte_Arr2 (1 .. 0);
   begin
     return Null_Arr;
   end;
 
   A1 : Byte_Arr1 (1 .. Length);
 
   A2 : Byte_Arr2 (A1'Range);
   for A2'Alignment use 4;
   for A2'Address use A1'Address;
 
begin
   A2 := Empty;
end;
 

Go to most recent revision | 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.