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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gnat.dg/] [align_check.adb] - Blame information for rev 749

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

Line No. Rev Author Line
1 696 jeremybenn
-- { dg-do run }
2
 
3
with System;
4
procedure align_check is
5
   N_Allocated_Buffers : Natural := 0;
6
--      
7
   function New_Buffer (N_Bytes : Natural) return System.Address is
8
   begin
9
      N_Allocated_Buffers := N_Allocated_Buffers + 1;
10
      return System.Null_Address;
11
   end;
12
--      
13
   Buffer_Address : constant System.Address := New_Buffer (N_Bytes => 8);
14
   N : Natural;
15
   for N'Address use Buffer_Address;
16
--      
17
begin
18
   if N_Allocated_Buffers /= 1 then
19
      raise Program_Error;
20
   end if;
21
end;

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.