URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gnat.dg/] [array11.adb] - Rev 308
Go to most recent revision | Compare with Previous | Blame | View Log
-- { dg-do compile } procedure Array11 is type Rec is null record; type Ptr is access all Rec; type Arr1 is array (1..8) of aliased Rec; -- { dg-warning "padded" } type Arr2 is array (Long_Integer) of aliased Rec; -- { dg-warning "padded" } A1 : Arr1; A2 : Arr2; -- { dg-warning "Storage_Error will be raised" } begin null; end;
Go to most recent revision | Compare with Previous | Blame | View Log