Changeset ff178ee for doc/generic_types
- Timestamp:
- Apr 12, 2017, 4:34:18 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 0d10090, 549950c
- Parents:
- e869e434
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/generic_types/evaluation/cfa-bench.c
re869e434 rff178ee 27 27 ) 28 28 29 stack(pair(_Bool, unsignedchar)) s2;29 stack(pair(_Bool, char)) s2; 30 30 REPEAT_TIMED( "push_bool_char", 31 push( &s2, (pair(_Bool, unsignedchar)){ rand() & 0x1, rand() & 0x7F } );31 push( &s2, (pair(_Bool, char)){ rand() & 0x1, rand() & 0x7F } ); 32 32 ) 33 33 34 stack(pair(_Bool, unsignedchar)) t2;34 stack(pair(_Bool, char)) t2; 35 35 TIMED( "copy_bool_char", 36 36 t2 = s2; … … 41 41 ) 42 42 43 pair(_Bool, unsignedchar) max2 = { (_Bool)0, '\0' };43 pair(_Bool, char) max2 = { (_Bool)0, '\0' }; 44 44 REPEAT_TIMED( "pop_bool_char", 45 45 max2 = max( max2, pop( &t2 ) );
Note: See TracChangeset
for help on using the changeset viewer.