Ignore:
Timestamp:
Jun 9, 2015, 3:19:04 PM (9 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
Children:
8a95629
Parents:
81419b5
Message:

fix warnings from prelude.cf, work on regression testing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Tests/SynTree/VariableDeclarator.c

    r81419b5 r0b2961f  
    4040int * const * const (f34[10]);
    4141
    42 int (*f35[]);
    43 int (*f36[10]);
    44 int (**f37[]);
    45 int (**f38[10]);
    46 int (* const *f39[]);
    47 int (* const *f40[10]);
    48 int (* const * const f41[]);
    49 int (* const * const f42[10]);
     42int (*f35)[];
     43int (*f36)[10];
     44int (**f37)[];
     45int (**f38)[10];
     46int (* const *f39)[];
     47int (* const *f40)[10];
     48int (* const * const f41)[];
     49int (* const * const f42)[10];
    5050
    5151int f43[][3];
     
    108108// Cforall extensions
    109109
    110 * [20] double z;
    111 [20] * char w;
     110* int cf3;
     111* * int cf4;
     112* const * int cf5;
     113const * const * int cf6;
     114
     115[] int cf15;
     116[10] int cf16;
     117
     118[] * int cf19;
     119[10] * int cf20;
     120int **cf21[];
     121[10] * * int cf22;
     122[] * const * int cf23;
     123[10] * const * int cf24;
     124[] const * const * int cf25;
     125[10] const * const * int cf26;
     126
     127* [] int cf35;
     128* [10] int cf36;
     129* * [] int cf37;
     130* * [10] int cf38;
     131* const * [] int cf39;
     132* const * [10] int cf40;
     133const * const * [] int cf41;
     134const * const * [10] int cf42;
     135
     136[][3] int cf43;
     137[3][3] int cf44;
     138
     139[][3] * int cf49;
     140[3][3] * int cf50;
     141[][3] * * int cf51;
     142[3][3] * * int cf52;
     143[][3] const * int cf53;
     144[3][3] * const * int cf54;
     145[][3] const * const * int cf55;
     146[3][3] const * const * int cf56;
     147
     148[int] cf65(int);
     149[int] cf66(int);
     150
     151[* int] cf67(int);
     152[* * int] cf68(int);
     153[const * * int] cf69(int);
     154[const * const * int] cf70(int);
    112155
    113156// function pointer
Note: See TracChangeset for help on using the changeset viewer.