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/] [slice5.adb] - Rev 519

Compare with Previous | Blame | View Log

--  { dg-do compile }
--  { dg-options "-gnatwr" }
 
procedure Slice5 is
 
   type Item_Type is record
      I : Integer;
   end record;
 
   type Index_Type is (A, B);
 
   type table is array (integer range <>) of integer;
   subtype Small is Integer range 1 .. 10;
   T1 : constant Table (Small) := (Small => 0);
   T2 : constant Table (Small) := T1 (Small);  -- { dg-warning "redundant slice denotes whole array" }
 
   Item_Array : constant array (Index_Type) of Item_Type
     := (A => (I => 10), B => (I => 22));
 
   Item : Item_Type;
   for Item'Address use Item_Array(Index_Type)'Address;   -- { dg-warning "redundant slice denotes whole array" }
begin
   null;
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.