- Timestamp:
- Jun 10, 2015, 2:26:44 PM (11 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, string, with_gc
- Children:
- b1d6dd5, b5c5684
- Parents:
- 0b2961f
- Location:
- src/Tests
- Files:
-
- 2 deleted
- 2 edited
-
ResolvExpr/Attributes.c (deleted)
-
ResolvExpr/Forall.c (deleted)
-
SynTree/Forall.c (modified) (1 diff)
-
Syntax/Attributes.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Tests/SynTree/Forall.c
r0b2961f r8a95629 1 int ?=?( int*, int ); 2 float ?=?( float*, float ); 3 int * ?=?( int **, int * ); 4 float * ?=?( float **, float * ); 5 char ?=?( char*, char ); 6 void (* ?=?( void (**)(void), void (*)(void) ))(void); 7 8 void g1() { 9 forall( type T ) T f( T ); 10 void f( int ); 11 void h( void (*p)(void) ); 12 13 int x; 14 void (*y)(void); 15 char z; 16 float w; 17 18 f( x ); 19 f( y ); 20 f( z ); 21 f( w ); 22 h( f( y ) ); 23 } 24 25 void g2() { 26 forall( type T ) void f( T, T ); 27 forall( type T, type U ) void f( T, U ); 28 29 int x; 30 float y; 31 int *z; 32 float *w; 33 34 f( x, y ); 35 f( z, w ); 36 f( x, z ); 37 } 38 1 39 typedef forall ( type T ) int (*f)( int ); 2 40 -
src/Tests/Syntax/Attributes.c
r0b2961f r8a95629 21 21 return 7; 22 22 } 23 24 int @voon; 25 double @voon; 26 27 int @bort(int); 28 int @bort(double); 29 30 void g( int ); 31 32 void f() { 33 float x; 34 double x; 35 @bort(x); 36 @bort(int); 37 g( @voon ); 38 } 39 40 // Local Variables: // 41 // tab-width: 4 // 42 // End: //
Note:
See TracChangeset
for help on using the changeset viewer.