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/] [pack2.adb] - Rev 304
Compare with Previous | Blame | View Log
-- { dg-do compile } -- { dg-options "-gnatws" } procedure Pack2 is type Bits_T is record B0, B1, B2: Boolean; end record; type State_T is record Valid : Boolean; Value : Bits_T; end record; pragma Pack (State_T); procedure Process (Bits : Bits_T) is begin null; end; State : State_T; begin Process (State.Value); end;