view gcc/testsuite/gnat.dg/wide_boolean_pkg.ads @ 118:fd00160c1b76

ifdef TARGET_64BIT
author mir3636
date Tue, 27 Feb 2018 15:01:35 +0900
parents 04ced10e8804
children
line wrap: on
line source

package Wide_Boolean_Pkg is

   type TBOOL is new BOOLEAN;
   for  TBOOL use (FALSE => 0, TRUE => 1);
   for  TBOOL'SIZE use 8;

   type TUINT32 is mod (2 ** 32);
   for  TUINT32'SIZE use 32;

   type TREC is
      record
         H : TUINT32;
         B : TBOOL;
      end record;
   for TREC use
      record
         H at 0 range 0..31;
         B at 4 range 0..31;
      end record;

   procedure Modify (LH : in out TUINT32; LB : in out TBOOL);
   pragma export(C, Modify, "Modify");

end Wide_Boolean_Pkg;