source: src/Tests/Array.c@ 63afee0

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay gc_noraii jacob/cs343-translation jenkins-sandbox memory new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new string with_gc
Last change on this file since 63afee0 was b1d6dd5, checked in by Peter A. Buhr <pabuhr@…>, 10 years ago

fix parsing error for EOF message, change cfa-ccp -x flag to -v, regression testing third attempt: consolidate example programs

  • Property mode set to 100644
File size: 438 bytes
RevLine 
[51b73452]1int a1[];
2int a2[*];
[cf0941d]3double a4[3.0];
[51b73452]4
5int m1[][3];
6int m2[*][*];
7int m4[3][3];
8
9typedef int T;
10
11int fred() {
[a65d92e]12 int a1[];
13 int a2[*];
14 int a4[3];
15 int T[3];
[51b73452]16}
17
18int mary( int T[3],
[a65d92e]19 int p1[const 3],
20 int p2[static 3],
21 int p3[static const 3]
22 ) {
[51b73452]23}
24
25int (*tom())[3] {
26}
27
28int (*(jane)())( int T[3],
[a65d92e]29 int p1[const 3],
30 int p2[static 3],
31 int p3[static const 3]
32 ) {
[51b73452]33}
[a65d92e]34
35// Local Variables: //
36// tab-width: 4 //
37// End: //
Note: See TracBrowser for help on using the repository browser.