Ignore:
Timestamp:
Jan 11, 2025, 5:48:46 PM (8 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
f886608
Parents:
7d65715f (diff), 32a119e9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/variableDeclarator.cfa

    r7d65715f rd60a4c2  
    9393int (f66)(int);
    9494
     95#pragma GCC diagnostic push
     96#pragma GCC diagnostic ignored "-Wignored-qualifiers"
     97
    9598int * f67(int);
    9699int ** f68(int);
     
    112115int (*(* const f80)(int))();
    113116int (* const(* const f81)(int))();
     117
     118#pragma GCC diagnostic pop
    114119
    115120// errors
     
    166171[int] cf66(int);
    167172
     173#pragma GCC diagnostic push
     174#pragma GCC diagnostic ignored "-Wignored-qualifiers"
     175
    168176[* int] cf67(int);
    169177[* * int] cf68(int);
    170178[const * * int] cf69(int);
    171179[const * const * int] cf70(int);
     180
     181#pragma GCC diagnostic pop
    172182
    173183// function pointer
     
    177187
    178188//Dummy main
    179 int main( int argc, char const * argv[] ) {
    180     #pragma GCC warning "Compiled"                      // force non-empty .expect file, NO TABS!!!
     189int main() {
     190    printf("done\n");
    181191}
    182192
Note: See TracChangeset for help on using the changeset viewer.