- Timestamp:
- Jun 27, 2016, 6:01:07 PM (9 years ago)
- 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, with_gc
- Children:
- 2e04c7b3
- Parents:
- c2ad3c9
- Location:
- src/tests
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tests/Makefile.am
rc2ad3c9 rc6b1105 11 11 ## Created On : Sun May 31 09:08:15 2015 12 12 ## Last Modified By : Peter A. Buhr 13 ## Last Modified On : Mon Jun 2 0 14:30:52201614 ## Update Count : 3 313 ## Last Modified On : Mon Jun 27 14:39:08 2016 14 ## Update Count : 34 15 15 ############################################################################### 16 16 … … 30 30 31 31 all-tests : 32 python test.py --all32 +python test.py --all 33 33 34 34 clean-local : -
src/tests/Makefile.in
rc2ad3c9 rc6b1105 637 637 638 638 all-tests : 639 python test.py --all639 +python test.py --all 640 640 641 641 clean-local : -
src/tests/Typedef.c
rc2ad3c9 rc6b1105 2 2 3 3 void f( void ) { 4 int T( T );4 int T( T p ) { return 3; } 5 5 T( 3 ); 6 6 } … … 38 38 typedef [ int, int ] tupleType; 39 39 typedef * [ int, int ] tupleTypePtr; 40 typedef * int a, b;40 typedef * int c, d; 41 41 typedef [ int ] f( * int ), g; 42 42 typedef [ * [static 10] int ] t; 43 typedef [ * [static 10] int x ] f();43 typedef [ * [static 10] int x ] h(); 44 44 45 45 // Local Variables: //
Note:
See TracChangeset
for help on using the changeset viewer.