Ignore:
Timestamp:
Aug 16, 2016, 6:09:36 PM (8 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, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
08ac489
Parents:
0da3e2c (diff), b7ea418 (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:

more refactoring of parser code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/declarationErrors.c

    r0da3e2c r29917c6  
     1const short static int volatile x4;
     2const static volatile short int x4;
    13static short int volatile static const x9;              // duplicate static
    24struct { int i; } const static volatile static x18;     // duplicate static
     
    57static Int volatile static const x28;                   // duplicate static
    68
     9const static inline const volatile int f01();           // duplicate const
     10volatile inline const volatile static int f02();        // duplicate volatile
     11const inline const volatile int static f03();           // duplicate const
     12volatile inline static const volatile int f04();        // duplicate volatile
     13const static const inline volatile int f05();           // duplicate const
     14volatile static const volatile inline int f06();        // duplicate volatile
     15const static const volatile int inline f07();           // duplicate const
     16volatile static const int inline volatile f08();        // duplicate volatile
     17
    718//Dummy main
    819int main(int argc, char const *argv[])
Note: See TracChangeset for help on using the changeset viewer.