URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [insight/] [gdb/] [testsuite/] [gdb.chill/] [gch1272.ch] - Rev 578
Go to most recent revision | Compare with Previous | Blame | View Log
gch1272: MODULE
SYNMODE m_array = ARRAY (0:99) INT;
DCL foo m_array;
SYNMODE m_xxx = ARRAY (1:10) LONG;
SYNMODE m_struct = STRUCT (i LONG, b BOOL);
SYNMODE m_bar = ARRAY (-10:20) m_struct;
DCL bar m_bar;
SYNMODE m_ps = POWERSET LONG (0:20);
brrr: PROC ()
END;
foo := [ (*): 222 ];
brrr ();
END gch1272;
Go to most recent revision | Compare with Previous | Blame | View Log