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.0rc1/] [gcc/] [testsuite/] [gnat.dg/] [discr14.ads] - Rev 338

Compare with Previous | Blame | View Log

package Discr14 is
 
  type COMPLETION_CODE is (SUCCESS, FAILURE, NONE);
 
  type T_SW_TYPE is (NONE, COMPLETION_CODE_TYPE);       
 
  type T_COMPLETION_CODE_RANGE (CONSTRAINED: BOOLEAN := FALSE) is
  record
     case CONSTRAINED is
        when TRUE =>
           FIRST  : COMPLETION_CODE := SUCCESS;
           LAST   : COMPLETION_CODE := FAILURE;
        when FALSE =>
           null;
     end case;
  end record;
 
  type T_SW_DIMENSIONS is range 0 .. 3;
 
  type T_SW_INDEX_LIST is array (T_SW_DIMENSIONS range <>) of POSITIVE;
 
  type T_SW_TYPE_DESCRIPTOR (SW_TYPE   :  T_SW_TYPE       := NONE;
                             DIMENSION :  T_SW_DIMENSIONS := 0)  is
  record
     BOUNDS : T_SW_INDEX_LIST (1 .. DIMENSION);
 
     case SW_TYPE is
 
        when COMPLETION_CODE_TYPE  =>
           COMPLETION_CODE_RANGE   : T_COMPLETION_CODE_RANGE;
 
        when OTHERS  =>
           null;
 
     end case;
  end record;
 
  type SW_TYPE_INFO is access T_SW_TYPE_DESCRIPTOR;
 
  procedure ASSIGN(TARGET : in out SW_TYPE_INFO; SOURCE : in SW_TYPE_INFO) ;
 
end Discr14;
 

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.