view gcc/testsuite/gnat.dg/thin_pointer1.adb @ 127:4c56639505ff

fix function.c and add CbC-example Makefile
author mir3636
date Wed, 11 Apr 2018 18:46:58 +0900
parents 04ced10e8804
children
line wrap: on
line source

-- { dg-do compile }
-- { dg-options "-O" }

package body Thin_Pointer1 is

   procedure Set_Buffer (AD : Buf_Ptr; Buffer : Stream_ptr) is
   begin
      AD.B.A := Buffer (Buffer'First)'Address;
   end Set_Buffer;

end Thin_Pointer1;